소스 검색

Don't crash when post has no media (d'Oh)

master
Gitea 1 년 전
부모
커밋
af97f570ab
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      mymastotag.py

+ 1
- 1
mymastotag.py 파일 보기

@@ -27,7 +27,7 @@ def my_masto_tag(lang, instance, user, tag):
27 27
         e['description'] = str(soup)
28 28
         images = []
29 29
         videos =[]
30
-        for m in e['media_content']:
30
+        for m in e.get('media_content', []):
31 31
             mtype = m['type'].split('/')[0]
32 32
             if mtype=='image':
33 33
                 images.append(m)

Loading…
취소
저장