Fix - display group name Favorites at Waypoints
This commit is contained in:
parent
41a57518c1
commit
de6e16b583
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ public class WaypointDialogHelper {
|
|||
|
||||
case WaypointHelper.FAVORITES:
|
||||
FavouritePoint favPoint = (FavouritePoint) ps.point;
|
||||
pointDescription = favPoint.getCategory();
|
||||
pointDescription = Algorithms.isEmpty(favPoint.getCategory()) ? activity.getResources().getString(R.string.shared_string_favorites) : favPoint.getCategory();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue