奖励消息

This commit is contained in:
18401019693
2022-09-06 16:36:34 +08:00
parent 4560c00810
commit ec8e258e45
8 changed files with 164 additions and 7 deletions

View File

@@ -74,6 +74,7 @@ public class RecommendLiveRoomProvider extends BaseMessageItemProvider<Recommend
if (recommendLiveRoom != null && !TextUtils.isEmpty(recommendLiveRoom.getContent())) {
RecommendLiveRoomModel model = new Gson().fromJson(recommendLiveRoom.getContent(), RecommendLiveRoomModel.class);
politicalInstructor = model.getAdminNickname();
politicalInstructor = TextUtils.isEmpty(politicalInstructor) ? "" : politicalInstructor;
}
return new SpannableString(politicalInstructor + mContext.getString(R.string.live_room_air_ticket));
}