Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1f9cac5 authored by Philip Whitehouse's avatar Philip Whitehouse Committed by cketti
Browse files

Fix #3032 - add count to string for replacement

parent b91209f4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);
        }