summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo⭐️ <Syuilotan@yahoo.co.jp>2017-03-13 22:07:14 +0900
committersyuilo⭐️ <Syuilotan@yahoo.co.jp>2017-03-13 22:07:14 +0900
commit24f2b238ba4e4c16aff349934d82a2063ac98c2e (patch)
tree30e095e96bf63f4d1a3bfcea5d917f72b12fa9f5 /src
parentFix (diff)
downloadsharkey-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.tag2
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();