Skip to content

Commit

Permalink
修复crash(非空判断)
Browse files Browse the repository at this point in the history
Change-Id: I828fa989b36ad9ff818dc9dfcbe941ff72dc555a
  • Loading branch information
archurcode committed Sep 18, 2020
1 parent cea2b33 commit dda98c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class RoomActivity : BaseActivity(), MyCallback {
modifyRoomPopup = EditPopupWindow(this)
modifyRoomPopup?.setShowData(
getString(R.string.room_name),
roomEntity!!.RoomName
roomEntity?.RoomName ?: ""
)
}
modifyRoomPopup?.setBg(room_bg)
Expand Down

0 comments on commit dda98c9

Please sign in to comment.