Skip to content

Commit

Permalink
More concise status message on subscription fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
gzsombor committed Feb 27, 2020
1 parent 01c1b67 commit 26988aa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ public void onAllChannelVideosFetched(boolean changed) {
if(changed) {
refreshFeedFromCache();
Toast.makeText(context,
String.format(context.getString(R.string.fetched_videos_from_channels),
numVideosFetched, numChannelsFetched, numChannelsSubscribed), Toast.LENGTH_LONG).show();
String.format(context.getString(R.string.notification_new_videos_found),
numVideosFetched), Toast.LENGTH_LONG).show();
} else {
Toast.makeText(context,
R.string.no_new_videos_found,
Expand Down

0 comments on commit 26988aa

Please sign in to comment.