Explorar o código

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

Danilo Bargen %!s(int64=6) %!d(string=hai) anos
pai
achega
a03e637d6a
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  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;
     }