修复:更新壁纸助手以支持更多图片格式

This commit is contained in:
jxxghp
2025-05-28 08:26:44 +08:00
parent 038dc372b7
commit a748c9d750
+1 -1
View File
@@ -91,7 +91,7 @@ class WallpaperHelper(metaclass=Singleton):
if resp and resp.status_code == 200: if resp and resp.status_code == 200:
# 如果返回的是图片格式 # 如果返回的是图片格式
content_type = resp.headers.get('Content-Type') content_type = resp.headers.get('Content-Type')
if content_type and content_type.lower() == 'image/jpeg': if content_type and content_type.lower().startswith('image/'):
wallpaper_list.append(settings.CUSTOMIZE_WALLPAPER_API_URL) wallpaper_list.append(settings.CUSTOMIZE_WALLPAPER_API_URL)
else: else:
try: try: