From 73ec8d511db639f41df6ddc42bc7bc2321f4b241 Mon Sep 17 00:00:00 2001 From: boufni95 Date: Fri, 15 Dec 2023 16:31:17 +0100 Subject: [PATCH] fix cb --- src/services/main/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/main/index.ts b/src/services/main/index.ts index a1b96a82..1f7e9334 100644 --- a/src/services/main/index.ts +++ b/src/services/main/index.ts @@ -178,7 +178,7 @@ export default class { getLogger({ appName: app.name })("cannot notify user, not a nostr user") return } - const message: Types.LiveUserOperation & { requestId: string } = { operation: op, requestId: "GetLiveUserOperations" } + const message: Types.LiveUserOperation & { requestId: string, status: 'OK' } = { operation: op, requestId: "GetLiveUserOperations", status: 'OK' } this.nostrSend(app.app_id, { type: 'content', content: JSON.stringify(message), pub: user.nostr_public_key }) }