에러가 아닌데 에러로 표시하는 부분 warning으로 변경
This commit is contained in:
parent
b6d7e0b0e9
commit
51c5e5f32c
|
@ -654,7 +654,7 @@ class LiveRoomViewModel(
|
||||||
{
|
{
|
||||||
_isLoading.value = false
|
_isLoading.value = false
|
||||||
if (it.success && it.data != null) {
|
if (it.success && it.data != null) {
|
||||||
_userProfileLiveData.value = it.data
|
_userProfileLiveData.value = it.data!!
|
||||||
onSuccess()
|
onSuccess()
|
||||||
} else {
|
} else {
|
||||||
if (it.message != null) {
|
if (it.message != null) {
|
||||||
|
|
Loading…
Reference in New Issue