Skip to content

Commit 1ada306

Browse files
get_info: add support for NIP47 notifications (#10)
1 parent 47e95bb commit 1ada306

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/Nip47.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,10 @@ void Nip47::parseResponse(SignedNostrEvent *response, Nip47Response<GetInfoRespo
454454
for (JsonVariant v : methodsObj) {
455455
out.result.methods.push_back(v.as<NostrString>());
456456
}
457+
JsonArray notificationsObj = data["notifications"].as<JsonArray>();
458+
for (JsonVariant v : notificationsObj) {
459+
out.result.notifications.push_back(v.as<NostrString>());
460+
}
457461
return;
458462
}
459463
}

src/Nip47.h

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ typedef struct s_GetInfoResponse {
120120
unsigned long long blockHeight;
121121
NostrString blockHash;
122122
std::vector<NostrString> methods;
123+
std::vector<NostrString> notifications;
123124
} GetInfoResponse;
124125

125126
typedef struct s_NWCData {

0 commit comments

Comments
 (0)