Преглед изворни кода

Prevent NPE on non-existing account

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
tobiasKaminsky пре 4 година
родитељ
комит
697541e054

+ 1 - 1
src/main/java/com/owncloud/android/operations/RefreshFolderOperation.java

@@ -336,7 +336,7 @@ public class RefreshFolderOperation extends RemoteOperation {
 
         try {
             client = OwnCloudClientFactory.createNextcloudClient(mAccount, mContext);
-        } catch (AccountUtils.AccountNotFoundException e) {
+        } catch (AccountUtils.AccountNotFoundException | NullPointerException e) {
             Log_OC.e(this, "Update of predefined status not possible!");
             return;
         }