Merge branch 'feature/check-for-update-button' into fork

This commit is contained in:
sk
2022-11-04 03:34:06 +01:00
3 changed files with 7 additions and 1 deletions

View File

@@ -348,6 +348,10 @@ public class SettingsFragment extends MastodonToolbarFragment{
if(updateItem != null && list.findViewHolderForAdapterPosition(0) instanceof UpdateViewHolder uvh){
uvh.bind(updateItem);
}
if (ev.state == GithubSelfUpdater.UpdateState.NO_UPDATE) {
Toast.makeText(getActivity(), R.string.no_update_available, Toast.LENGTH_SHORT).show();
}
}
private static abstract class Item{