Implemented 'createFolder'

This commit is contained in:
Tristan B. Kildaire 2020-07-29 10:19:10 +02:00
parent 0392752b01
commit b55921fea6
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ public final class Folder
mkdir("mailboxes/"~mailbox.username~"/"~folderPath~"/"~folderName);
/* Create an instance of the newly created folder */
newFolder = new Folder(mailbox, this, folderName);
newFolder = new Folder(mailbox, folderPath~"/"~folderName);
return newFolder;