From bf3db50c5541a4ad42f8fd4320dfa1179f25e993 Mon Sep 17 00:00:00 2001 From: Avently <7953703+avently@users.noreply.github.com> Date: Thu, 21 Nov 2024 18:11:32 +0700 Subject: [PATCH] fix --- .../commonMain/kotlin/chat/simplex/common/model/SimpleXAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/model/SimpleXAPI.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/model/SimpleXAPI.kt index 02e094fb28..c1c6c29095 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/model/SimpleXAPI.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/model/SimpleXAPI.kt @@ -3277,7 +3277,7 @@ sealed class CC { is APISendMemberContactInvitation -> "/_invite member contact @$contactId ${mc.cmdString}" is APITestProtoServer -> "/_server test $userId $server" is ApiGetServerOperators -> "/_operators" - is ApiSetServerOperators -> "/_operators ${json.encodeToString(operators)}}" + is ApiSetServerOperators -> "/_operators ${json.encodeToString(operators)}" is ApiGetUserServers -> "/_servers $userId" is ApiSetUserServers -> "/_servers $userId ${json.encodeToString(userServers)}" is ApiValidateServers -> "/_validate_servers $userId ${json.encodeToString(userServers)}"