Skip to content

Commit 122e70c

Browse files
Relax LNURLP status checks (#6)
* Relax LNURLP status checks Some LNURLP implementations (such as the LNBits 0.12.x on demo.lnpiggy.com) don't send a "status" field in their initial response, nor in their invoice reponse. This was causing getInvoiceFromLNAddr() to fail, even though it works fine with other tested clients. Instead of failing if the status is not present or if it's not OK, this commit only fails if the status is not OK, but continues if there is no explicit status field set. * Use NostrString_equals() on NostrString
1 parent 052d54f commit 122e70c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/esp32/ESP32Transport.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ void esp32::ESP32Transport::getInvoiceFromLNAddr(NostrString addr, unsigned long
4343
return;
4444
}
4545
NostrString status = doc["status"];
46-
if (!NostrString_equals(status, "OK")) {
47-
Utils::log("LNURLP status not OK");
46+
if (!NostrString_equals(status,"null") && !NostrString_equals(status, "OK")) {
47+
Utils::log("LNURLP status is set but not OK, status is: '" + status + "'");
4848
cb("");
4949
return;
5050
}
@@ -75,8 +75,8 @@ void esp32::ESP32Transport::getInvoiceFromLNAddr(NostrString addr, unsigned long
7575
return;
7676
}
7777
NostrString callbackStatus = doc["status"];
78-
if (!NostrString_equals(callbackStatus, "OK")) {
79-
Utils::log("LNURLP callback status not OK");
78+
if (!NostrString_equals(callbackStatus,"null") && !NostrString_equals(callbackStatus, "OK")) {
79+
Utils::log("LNURLP callback status is set but not OK, status is: '" + callbackStatus + "'");
8080
cb("");
8181
return;
8282
}

0 commit comments

Comments
 (0)