Browse Source

fix notification refresh (#1638)

pull/1642/head
Konrad Pozniak 6 years ago committed by GitHub
parent
commit
21a7201f8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      app/src/main/java/com/keylesspalace/tusky/fragment/NotificationsFragment.java

8
app/src/main/java/com/keylesspalace/tusky/fragment/NotificationsFragment.java

@ -1024,6 +1024,14 @@ public class NotificationsFragment extends SFragment implements
}
}
Log.e(TAG, "Fetch failure: " + exception.getMessage());
if (fetchEnd == FetchEnd.TOP) {
topLoading = false;
}
if (fetchEnd == FetchEnd.BOTTOM) {
bottomLoading = false;
}
progressBar.setVisibility(View.GONE);
}

Loading…
Cancel
Save