diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2019-07-04 14:45:28 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-07-04 14:45:28 +0900 |
| commit | ead5a6a258261f2294aad770ccc1ff01d02ed832 (patch) | |
| tree | 1e641fbb3616019ae0d8d94541e0aa42d53e749b /src/client/app/mobile/views | |
| parent | Fix MIME (diff) | |
| download | sharkey-ead5a6a258261f2294aad770ccc1ff01d02ed832.tar.gz sharkey-ead5a6a258261f2294aad770ccc1ff01d02ed832.tar.bz2 sharkey-ead5a6a258261f2294aad770ccc1ff01d02ed832.zip | |
APNG support
Diffstat (limited to 'src/client/app/mobile/views')
| -rw-r--r-- | src/client/app/mobile/views/pages/user/home.photos.vue | 4 | ||||
| -rw-r--r-- | src/client/app/mobile/views/pages/welcome.vue | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/pages/user/home.photos.vue b/src/client/app/mobile/views/pages/user/home.photos.vue index d9817f1a53..b5547c916f 100644 --- a/src/client/app/mobile/views/pages/user/home.photos.vue +++ b/src/client/app/mobile/views/pages/user/home.photos.vue @@ -30,7 +30,9 @@ export default Vue.extend({ const image = [ 'image/jpeg', 'image/png', - 'image/gif' + 'image/gif', + 'image/apng', + 'image/vnd.mozilla.apng', ]; this.$root.api('users/notes', { userId: this.user.id, diff --git a/src/client/app/mobile/views/pages/welcome.vue b/src/client/app/mobile/views/pages/welcome.vue index 48a6650b4f..6cf4a36f90 100644 --- a/src/client/app/mobile/views/pages/welcome.vue +++ b/src/client/app/mobile/views/pages/welcome.vue @@ -110,7 +110,9 @@ export default Vue.extend({ const image = [ 'image/jpeg', 'image/png', - 'image/gif' + 'image/gif', + 'image/apng', + 'image/vnd.mozilla.apng', ]; this.$root.api('notes/local-timeline', { |