commit 19435e0fc122d3a7ea9789439bc2279a4d7296ee parent 09b5314c83b7dedd4bc6c4222cf49635d7b41d27 Author: t3sserakt <t3ss@posteo.de> Date: Tue, 24 Mar 2026 15:17:07 +0100 fix T error Diffstat:
| M | GNUnetMessenger/app/src/main/java/org/gnunet/gnunetmessenger/service/boundimpl/GnunetChatBoundService.kt | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/GNUnetMessenger/app/src/main/java/org/gnunet/gnunetmessenger/service/boundimpl/GnunetChatBoundService.kt b/GNUnetMessenger/app/src/main/java/org/gnunet/gnunetmessenger/service/boundimpl/GnunetChatBoundService.kt @@ -373,7 +373,7 @@ class GnunetChatBoundService( } override suspend fun stopChat(handle: ChatHandle) { - withReadyRemote(handle) { remote, h -> + withReadyRemote<Unit>(handle) { remote, h -> withContext(Dispatchers.IO) { remote.stopChat(h) } } }