Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 56fdbf58 authored by alperozturk's avatar alperozturk
Browse files

fix: get notes test

parent 6c566b13
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -292,11 +292,11 @@ abstract class NotesServerSyncTask extends Thread {
                    }
                } else if (cause.getClass() == NextcloudApiNotRespondingException.class || cause instanceof NextcloudApiNotRespondingException) {
                    apiProvider.invalidateAPICache(ssoAccount);
                }
            } else if (t.getClass() == NextcloudNetworkException.class) {
                } else if (cause.getClass() == NextcloudNetworkException.class) {
                    Log.w(TAG, "Network connectivity issue during sync");
                    return true;
                }
            }

            exceptions.add(t);
            return false;