mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-29 01:56:43 -06:00
[Client] Fix #2737
This commit is contained in:
parent
665fa7f2aa
commit
26b47c18fd
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ export default Vue.extend({
|
||||||
}).then(name => {
|
}).then(name => {
|
||||||
(this as any).api('drive/folders/create', {
|
(this as any).api('drive/folders/create', {
|
||||||
name: name,
|
name: name,
|
||||||
folderId: this.folder ? this.folder.id : undefined
|
parentId: this.folder ? this.folder.id : undefined
|
||||||
}).then(folder => {
|
}).then(folder => {
|
||||||
this.addFolder(folder, true);
|
this.addFolder(folder, true);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue