Browse Source

Retry forbidden share adding a password only if the value of 'enforce password' option is unknown

David A. Velasco 9 years ago
parent
commit
00a4ba4f52
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/com/owncloud/android/ui/activity/FileActivity.java

+ 1 - 1
src/com/owncloud/android/ui/activity/FileActivity.java

@@ -801,7 +801,7 @@ public class FileActivity extends AppCompatActivity
             if (result.getCode() == ResultCode.SHARE_FORBIDDEN) {
                 String password = operation.getPassword();
                 if ((password == null || password.length() == 0) &&
-                    !getCapabilities().getFilesSharingPublicEnabled().isFalse())
+                    getCapabilities().getFilesSharingPublicEnabled().isUnknown())
                     {
                     // Was tried without password, but not sure that it's optional. Try with password.
                     // Try with password before giving up.