[Client] Fix bug

ドライブのファイルメニューからアバターやバナーに設定することができない問題を修正
This commit is contained in:
syuilo 2019-01-21 12:04:31 +09:00
parent e9ebc5151d
commit fee629849e
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 5 additions and 2 deletions

View file

@ -19,6 +19,7 @@ unreleased
* 関係のない返信がタイムラインに流れる問題を修正
* 常にメディアを閲覧注意として投稿するオプションが機能していなかった問題を修正
* リモートユーザーのアイコンが消えることがある問題を修正
* ドライブのファイルメニューからアバターやバナーに設定することができない問題を修正
* クライアントのAPIリクエストをストリーム経由で行うオプションを廃止
* 一部箇所でカスタム絵文字が適用されていないのを修正

View file

@ -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() {