Skip to content

Commit c245538

Browse files
committed
fix get_withdrawlink
1 parent 0484492 commit c245538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylnbits/lnurl_w.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async def get_withdrawlink(self, withdraw_id: str):
6060
"""
6161
try:
6262
path = self._lnbits_url + self._upath + "/" + withdraw_id
63-
res = await get_url(self._session, path, self._invoice_headers)
63+
res = await get_url_resp(self._session, path, self._invoice_headers)
6464
return res
6565
except Exception as e:
6666
logger.info(e)

0 commit comments

Comments
 (0)