Fix resources

This commit is contained in:
Mieszko Wrzeszczyński 2019-01-10 00:51:14 +01:00
parent 3379faf59b
commit ec68ae14ef

View File

@ -54,7 +54,7 @@ public class TutorsListAdapter extends RecyclerView.Adapter<TutorsListAdapter.My
String ts = tutorsTimeStamps.get(tutor.getId());
if (ts != null){
holder.lastSeen.setText(String.format("%s: %s", context.getResources().getString(R.string.last_seen), ts));
holder.lastSeen.setText(String.format("%s: %s", context.getString(R.string.last_seen), ts));
}
}