mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-03 09:55:39 +00:00
Simplify Exception handling in NewMessage
This commit is contained in:
parent
922a3ce827
commit
bf3835d6a6
@ -84,11 +84,12 @@ class NewMessageViewModel @Inject constructor(
|
|||||||
_state.update { it.copy(loading = false) }
|
_state.update { it.copy(loading = false) }
|
||||||
onPublicKey(onsNameOrPublicKey)
|
onPublicKey(onsNameOrPublicKey)
|
||||||
}
|
}
|
||||||
|
} catch (e: TimeoutCancellationException) {
|
||||||
|
onError(e)
|
||||||
} catch (e: CancellationException) {
|
} catch (e: CancellationException) {
|
||||||
if (e is TimeoutCancellationException) {
|
// Ignore JobCancellationException, which is called when we cancel the job and
|
||||||
// Ignore JobCancellationException, which is called when we cancel the job.
|
// is handled where the job is canceled.
|
||||||
onError(e)
|
// Can't reference JobCancellationException directly, it is internal.
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
onError(e)
|
onError(e)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user