Fix #3032 - add count to string for replacement

This commit is contained in:
Philip Whitehouse 2018-01-04 00:39:03 +00:00
parent f1deeb76d7
commit 8014943e7d

View file

@ -1343,7 +1343,8 @@ public class MessageListFragment extends Fragment implements OnItemClickListener
handler.updateFooter(context.getResources().getQuantityString(R.plurals.remote_search_downloading_limited,
maxResults, maxResults, numResults));
} else {
handler.updateFooter(context.getResources().getQuantityString(R.plurals.remote_search_downloading, numResults));
handler.updateFooter(context.getResources().getQuantityString(R.plurals.remote_search_downloading,
numResults, numResults));
}
fragmentListener.setMessageListProgress(Window.PROGRESS_START);
}