소스 검색

Use low-res thumbnail for url previews if full image isn't available

Tulir Asokan 3 년 전
부모
커밋
6b8d478305
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      urlpreview.go

+ 2 - 1
urlpreview.go

@@ -74,7 +74,8 @@ func (portal *Portal) convertURLPreviewToBeeper(intent *appservice.IntentAPI, so
 		if err != nil {
 			portal.log.Warnfln("Failed to download thumbnail for link preview: %v", err)
 		}
-	} else if msg.JpegThumbnail != nil {
+	}
+	if thumbnailData == nil && msg.JpegThumbnail != nil {
 		thumbnailData = msg.JpegThumbnail
 	}
 	if thumbnailData != nil {