We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24c4215 commit 5e368dfCopy full SHA for 5e368df
1 file changed
presentation/src/main/java/com/nextroom/nextroom/presentation/ui/hint/HintViewModel.kt
@@ -29,6 +29,7 @@ class HintViewModel @AssistedInject constructor(
29
state.copy(
30
hint = gameSharedState.currentHint ?: state.hint,
31
userSubscribeStatus = gameSharedState.subscribeStatus,
32
+ networkDisconnectedCount = state.networkDisconnectedCount,
33
isHintOpened = (gameSharedState.currentHint?.id ?: state.hint.id) in gameSharedState.openedHintIds,
34
isAnswerOpened = (gameSharedState.currentHint?.id ?: state.hint.id) in gameSharedState.openedAnswerIds,
35
totalHintCount = gameSharedState.totalHintCount
0 commit comments