Merge branch 'develop'

This commit is contained in:
syuilo 2019-04-24 20:51:34 +09:00
commit afe2037985
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
4 changed files with 9 additions and 4 deletions

View File

@ -35,6 +35,11 @@ mongodb:
8. master ブランチに戻す 8. master ブランチに戻す
9. enjoy 9. enjoy
11.3.1 (2019/04/24)
-------------------
### Fixes
* Webからファイルがアップロードできない問題を修正
11.3.0 (2019/04/24) 11.3.0 (2019/04/24)
------------------- -------------------
### Improvements ### Improvements

View File

@ -1,7 +1,7 @@
{ {
"name": "misskey", "name": "misskey",
"author": "syuilo <i@syuilo.com>", "author": "syuilo <i@syuilo.com>",
"version": "11.3.0", "version": "11.3.1",
"codename": "daybreak", "codename": "daybreak",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -38,10 +38,10 @@ export default Vue.extend({
const data = new FormData(); const data = new FormData();
data.append('md5', getMD5(fileData)); data.append('md5', getMD5(fileData));
this.$root.api('drive/files/check_existence', { this.$root.api('drive/files/find-by-hash', {
md5: getMD5(fileData) md5: getMD5(fileData)
}).then(resp => { }).then(resp => {
resolve(resp.file); resolve(resp.length > 0 ? resp[0] : null);
}); });
}); });
}, },

View File

@ -228,7 +228,7 @@ export default Vue.extend({
const draft = JSON.parse(localStorage.getItem('drafts') || '{}')[this.draftId]; const draft = JSON.parse(localStorage.getItem('drafts') || '{}')[this.draftId];
if (draft) { if (draft) {
this.text = draft.data.text; this.text = draft.data.text;
this.files = draft.data.files; this.files = (draft.data.files || []).filter(e => e);
if (draft.data.poll) { if (draft.data.poll) {
this.poll = true; this.poll = true;
this.$nextTick(() => { this.$nextTick(() => {