Fix malformed callback
This commit is contained in:
parent
9c13048fb6
commit
79d473b0f5
|
@ -27,11 +27,15 @@ func Router(e *echo.Echo, ln lightning.Lightning) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func payRequest(c echo.Context) error {
|
func payRequest(c echo.Context) error {
|
||||||
name := c.Param("name")
|
callback, err := url.JoinPath(env.PublicUrl, "/.well-known/lnurlp/", c.Param("name"), "/pay")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
return c.JSON(
|
return c.JSON(
|
||||||
http.StatusOK,
|
http.StatusOK,
|
||||||
map[string]any{
|
map[string]any{
|
||||||
"callback": fmt.Sprintf("%s/.well-known/lnurlp/%s/pay", env.PublicUrl, name),
|
"callback": callback,
|
||||||
"minSendable": MIN_SENDABLE_AMOUNT,
|
"minSendable": MIN_SENDABLE_AMOUNT,
|
||||||
"maxSendable": MAX_SENDABLE_AMOUNT,
|
"maxSendable": MAX_SENDABLE_AMOUNT,
|
||||||
"metadata": fmt.Sprintf("[[\"text/plain\",\"paying %s\"]]", name),
|
"metadata": fmt.Sprintf("[[\"text/plain\",\"paying %s\"]]", name),
|
||||||
|
|
Loading…
Reference in New Issue