diff --git a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java index 715259962e..f5c2602c94 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java +++ b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java @@ -826,10 +826,11 @@ public class PlacePageView extends NestedScrollViewClickFixed { SpannableStringBuilder sb = new SpannableStringBuilder(text); int start = text.indexOf("★"); + int end = text.lastIndexOf("★") + 1; if (start > -1) { sb.setSpan(new ForegroundColorSpan(getResources().getColor(R.color.base_yellow)), - start, sb.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE); + start, end, Spanned.SPAN_INCLUSIVE_EXCLUSIVE); } mTvSubtitle.setText(sb);