Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,14 @@ internal constructor(
if (newState.isConnected()) {
connectionState = ConnectionState.CONNECTED
} else if (newState.isDisconnected()) {
connectionState = ConnectionState.DISCONNECTED
// Only transition to DISCONNECTED when not already in a reconnection
// intermediate state (RESUMING/RECONNECTING). In those states the
// reconnect flow owns connectionState; overwriting it here would
// silently swallow the disconnect and prevent the app from being notified.
val current = connectionState
if (current != ConnectionState.RESUMING && current != ConnectionState.RECONNECTING) {
connectionState = ConnectionState.DISCONNECTED
}
}
}

Expand Down
Loading