Fix crash when closing app during voice memo.

This commit is contained in:
Nicholas Tinsley
2023-09-13 11:29:06 -04:00
committed by Alex Hart
parent 2f53c1a860
commit ff5b024074

View File

@@ -3807,7 +3807,9 @@ class ConversationFragment :
}
override fun onRecorderCanceled(byUser: Boolean) {
updateToggleButtonState()
if (lifecycle.currentState.isAtLeast(Lifecycle.State.CREATED)) {
updateToggleButtonState()
}
voiceMessageRecordingDelegate.onRecorderCanceled(byUser)
}