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/desktop/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/desktop/views')
| -rw-r--r-- | src/client/app/desktop/views/home/user/user.photos.vue | 4 | ||||
| -rw-r--r-- | src/client/app/desktop/views/pages/welcome.vue | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/home/user/user.photos.vue b/src/client/app/desktop/views/home/user/user.photos.vue index 5948e805ac..03abcf865c 100644 --- a/src/client/app/desktop/views/home/user/user.photos.vue +++ b/src/client/app/desktop/views/home/user/user.photos.vue @@ -38,7 +38,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', { diff --git a/src/client/app/desktop/views/pages/welcome.vue b/src/client/app/desktop/views/pages/welcome.vue index 8a66728a7b..511e1548e5 100644 --- a/src/client/app/desktop/views/pages/welcome.vue +++ b/src/client/app/desktop/views/pages/welcome.vue @@ -186,7 +186,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', { |