diff --git a/android/src/com/mapswithme/maps/ugc/UGCReviewAdapter.java b/android/src/com/mapswithme/maps/ugc/UGCReviewAdapter.java index 733f5ed50d..f9a776e334 100644 --- a/android/src/com/mapswithme/maps/ugc/UGCReviewAdapter.java +++ b/android/src/com/mapswithme/maps/ugc/UGCReviewAdapter.java @@ -69,6 +69,8 @@ class UGCReviewAdapter extends Adapter mCommentDate = (TextView) itemView.findViewById(R.id.date); mReview = (TextView) itemView.findViewById(R.id.review); mRating = (RatingView) itemView.findViewById(R.id.rating); + // TODO: remove "gone" visibility when review rating behaviour is fixed on the server. + mRating.setVisibility(View.GONE); } public void bind(UGC.Review review)