From fee629849e09683fa46aa070ff6ad637d5b6e13b Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 21 Jan 2019 12:04:31 +0900 Subject: [PATCH] [Client] Fix bug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ドライブのファイルメニューからアバターやバナーに設定することができない問題を修正 --- CHANGELOG.md | 1 + src/client/app/desktop/views/components/drive.file.vue | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51d64a8bd..d4a79e5ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ unreleased * 関係のない返信がタイムラインに流れる問題を修正 * 常にメディアを閲覧注意として投稿するオプションが機能していなかった問題を修正 * リモートユーザーのアイコンが消えることがある問題を修正 +* ドライブのファイルメニューからアバターやバナーに設定することができない問題を修正 * クライアントのAPIリクエストをストリーム経由で行うオプションを廃止 * 一部箇所でカスタム絵文字が適用されていないのを修正 diff --git a/src/client/app/desktop/views/components/drive.file.vue b/src/client/app/desktop/views/components/drive.file.vue index d5ec4fb2d..fbd649e8f 100644 --- a/src/client/app/desktop/views/components/drive.file.vue +++ b/src/client/app/desktop/views/components/drive.file.vue @@ -36,6 +36,8 @@ import Vue from 'vue'; import i18n from '../../../i18n'; import anime from 'animejs'; import copyToClipboard from '../../../common/scripts/copy-to-clipboard'; +import updateAvatar from '../../api/update-avatar'; +import updateBanner from '../../api/update-banner'; export default Vue.extend({ i18n: i18n('desktop/views/components/drive.file.vue'), @@ -180,11 +182,11 @@ export default Vue.extend({ }, setAsAvatar() { - this.$updateAvatar(this.file); + updateAvatar(this.$root)(this.file); }, setAsBanner() { - this.$updateBanner(this.file); + updateBanner(this.$root)(this.file); }, addApp() {