X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/b22e231909c285f47998f5e13cd090ba07fb0404..75b88e18b40bdb8abb6eec74027720209bee9349:/src/com/owncloud/android/operations/CreateFolderOperation.java diff --git a/src/com/owncloud/android/operations/CreateFolderOperation.java b/src/com/owncloud/android/operations/CreateFolderOperation.java index 263e572b..0b3343c6 100644 --- a/src/com/owncloud/android/operations/CreateFolderOperation.java +++ b/src/com/owncloud/android/operations/CreateFolderOperation.java @@ -61,7 +61,7 @@ public class CreateFolderOperation extends SyncOperation implements OnRemoteOper protected RemoteOperationResult run(OwnCloudClient client) { CreateRemoteFolderOperation operation = new CreateRemoteFolderOperation(mRemotePath, mCreateFullPath); - RemoteOperationResult result = operation.execute(client, MainApp.getUserAgent()); + RemoteOperationResult result = operation.execute(client); if (result.isSuccess()) { saveFolderInDB(); @@ -121,4 +121,8 @@ public class CreateFolderOperation extends SyncOperation implements OnRemoteOper Log_OC.d(TAG, "Create directory " + mRemotePath + " in Database"); } } + + public String getRemotePath() { + return mRemotePath; + } }