Sfoglia il codice sorgente

Latest message text: Show "GIF" for GIFs (#649)

Danilo Bargen 6 anni fa
parent
commit
a03e637d6a
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      src/directives/message_text.ts

+ 2 - 0
src/directives/message_text.ts

@@ -31,6 +31,8 @@ function getText(message: threema.Message): string {
             // Prefer caption for file messages, if available
             if (message.caption && message.caption.length > 0) {
                 return message.caption;
+            } else if (message.file.type === 'image/gif') {
+                return 'GIF';
             }
             return message.file.name;
     }