Ensure we are on main thread

This commit is contained in:
Naveen 2023-01-06 20:25:49 +05:30
parent 71e5e06c60
commit 164605e42f
1 changed files with 3 additions and 1 deletions

View File

@ -676,7 +676,9 @@ class ThreadActivity : SimpleActivity() {
} else {
messages.first().participants
}
maybeDisableShortCodeReply()
runOnUiThread {
maybeDisableShortCodeReply()
}
}
}