aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian S <christian@pix-art.de>2015-07-04 16:27:35 +0200
committerChristian S <christian@pix-art.de>2015-07-04 16:27:35 +0200
commit2352f114acdf7ab6b37e44e212bb72e5ded5bc68 (patch)
tree2b178abfa1f57ec05daf684cf70ce22217833770 /src
parentd5c03e5ab3f381789bf1b57717e9bb2f271004b9 (diff)
added some more well known file types to be downloadable
Diffstat (limited to 'src')
-rw-r--r--src/main/java/eu/siacs/conversations/entities/Downloadable.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/eu/siacs/conversations/entities/Downloadable.java b/src/main/java/eu/siacs/conversations/entities/Downloadable.java
index 8fae91bbc..cd160af00 100644
--- a/src/main/java/eu/siacs/conversations/entities/Downloadable.java
+++ b/src/main/java/eu/siacs/conversations/entities/Downloadable.java
@@ -4,7 +4,7 @@ public interface Downloadable {
String[] VALID_IMAGE_EXTENSIONS = {"webp", "jpeg", "jpg", "png", "jpe"};
String[] VALID_CRYPTO_EXTENSIONS = {"pgp", "gpg", "otr"};
- String[] WELL_KNOWN_EXTENSIONS = {"pdf","m4a"};
+ String[] WELL_KNOWN_EXTENSIONS = {"pdf","m4a","mp3","avi","mp4"};
int STATUS_UNKNOWN = 0x200;
int STATUS_CHECKING = 0x201;