Fix #3032 - add count to string for replacement
This commit is contained in:
parent
f1deeb76d7
commit
8014943e7d
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue