소스 검색

fix: site icon not showing (#11094)

tags/0.12.1
Hash Brown 11 달 전
부모
커밋
0f85e3557b
No account linked to committer's email address
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      api/libs/helper.py

+ 2
- 2
api/libs/helper.py 파일 보기

@@ -31,12 +31,12 @@ class AppIconUrlField(fields.Raw):
if obj is None:
return None

from models.model import App, IconType
from models.model import App, IconType, Site

if isinstance(obj, dict) and "app" in obj:
obj = obj["app"]

if isinstance(obj, App) and obj.icon_type == IconType.IMAGE.value:
if isinstance(obj, App | Site) and obj.icon_type == IconType.IMAGE.value:
return file_helpers.get_signed_file_url(obj.icon)
return None


Loading…
취소
저장