Skip to content

Commit

Permalink
Update title when showing contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
vanitasvitae committed Nov 7, 2016
1 parent 19efbb6 commit e07199c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ public void onReceive(Context context, Intent intent) {
setTitle(R.string.nav_mentions);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_PUBLIC)) {
setTitle(R.string.public_);
} else if (urls.isAspectUrl(url)) {
} else if (urls.getManageContactsUrl().equals(url)) {
setTitle(R.string.contacts);
}else if (urls.isAspectUrl(url)) {
setTitle(urls.getAspectNameFromUrl(url, app));
}
} else {
Expand Down

0 comments on commit e07199c

Please sign in to comment.