From 16d237e42ad8338aea13365f6a50459f3b6c1fd8 Mon Sep 17 00:00:00 2001 From: "David A. Velasco" Date: Mon, 12 May 2014 09:58:18 +0200 Subject: [PATCH] Added ResultCode for failed local removal --- .../android/lib/common/operations/RemoteOperationResult.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/owncloud/android/lib/common/operations/RemoteOperationResult.java b/src/com/owncloud/android/lib/common/operations/RemoteOperationResult.java index 3855a189..cfc2c3c9 100644 --- a/src/com/owncloud/android/lib/common/operations/RemoteOperationResult.java +++ b/src/com/owncloud/android/lib/common/operations/RemoteOperationResult.java @@ -97,7 +97,8 @@ public class RemoteOperationResult implements Serializable { ACCOUNT_NOT_NEW, ACCOUNT_NOT_THE_SAME, INVALID_CHARACTER_IN_NAME, - SHARE_NOT_FOUND + SHARE_NOT_FOUND, + LOCAL_STORAGE_NOT_REMOVED } private boolean mSuccess = false;