refactor(settings): route settings UI through intents and navigation effects

This commit is contained in:
2026-05-30 19:16:38 +03:00
parent 10453287a7
commit 2daab8d0f7
11 changed files with 231 additions and 153 deletions
@@ -641,7 +641,7 @@ class LongPollUpdatesParser(
).listenValue(this) { state ->
state.processState(
error = { error ->
logger.error(this::class, "loadMessage(): ERROR: $error")
logger.error(this@LongPollUpdatesParser::class, "loadMessage(): ERROR: $error")
continuation.resume(null)
},
success = { response ->
@@ -670,7 +670,7 @@ class LongPollUpdatesParser(
).listenValue(coroutineScope) { state ->
state.processState(
error = { error ->
logger.error(this::class, "loadConvo(): ERROR: $error")
logger.error(this@LongPollUpdatesParser::class, "loadConvo(): ERROR: $error")
continuation.resume(null)
},
success = { response ->