diff options
| author | syuilo⭐️ <Syuilotan@yahoo.co.jp> | 2017-03-13 22:07:14 +0900 |
|---|---|---|
| committer | syuilo⭐️ <Syuilotan@yahoo.co.jp> | 2017-03-13 22:07:14 +0900 |
| commit | 24f2b238ba4e4c16aff349934d82a2063ac98c2e (patch) | |
| tree | 30e095e96bf63f4d1a3bfcea5d917f72b12fa9f5 /src | |
| parent | Fix (diff) | |
| download | sharkey-24f2b238ba4e4c16aff349934d82a2063ac98c2e.tar.gz sharkey-24f2b238ba4e4c16aff349934d82a2063ac98c2e.tar.bz2 sharkey-24f2b238ba4e4c16aff349934d82a2063ac98c2e.zip | |
Fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/web/app/mobile/tags/drive.tag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/mobile/tags/drive.tag b/src/web/app/mobile/tags/drive.tag index f1a9bf9f43..ad085aab85 100644 --- a/src/web/app/mobile/tags/drive.tag +++ b/src/web/app/mobile/tags/drive.tag @@ -455,7 +455,7 @@ if (name == null || name == '') return; this.api('drive/folders/create', { name: name, - folder_id: this.folder ? this.folder.id : undefined + parent_id: this.folder ? this.folder.id : undefined }).then(folder => { this.addFolder(folder, true); this.update(); |