From b30d72794293e34e2feba7cb40ee79378ae4459d Mon Sep 17 00:00:00 2001 From: boufni95 Date: Wed, 18 Sep 2024 19:07:30 +0000 Subject: [PATCH] fix req id --- 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 d3af98bc..15310e3c 100644 --- a/src/services/main/index.ts +++ b/src/services/main/index.ts @@ -329,7 +329,7 @@ export default class { const app = await this.storage.applicationStorage.GetApplication(event.appId) const appUser = await this.storage.applicationStorage.GetApplicationUser(app, res.appUserId) if (res.status === 'authRequired') { - const message: Types.LiveDebitRequest & { requestId: string, status: 'OK' } = { ...res.liveDebitReq, requestId: "GetLiveUserOperations", status: 'OK' } + const message: Types.LiveDebitRequest & { requestId: string, status: 'OK' } = { ...res.liveDebitReq, requestId: "GetLiveDebitRequests", status: 'OK' } if (appUser.nostr_public_key) {// TODO - fix before support for http streams this.nostrSend({ type: 'app', appId: event.appId }, { type: 'content', content: JSON.stringify(message), pub: appUser.nostr_public_key }) }