diff --git a/echo_handlers.go b/echo_handlers.go index 19795b13..a2a29963 100644 --- a/echo_handlers.go +++ b/echo_handlers.go @@ -196,7 +196,7 @@ func (svc *Service) AppsCreateHandler(c echo.Context) error { if c.FormValue("returnTo") != "" { return c.Redirect(302, c.FormValue("returnTo")) } - pairingUri := template.URL(fmt.Sprintf("nostr+walletconnect://%s?relay=%s&secret=%s", svc.cfg.IdentityPubkey, svc.cfg.Relay, pairingSecretKey)) + pairingUri := template.URL(fmt.Sprintf("nostrwalletconnect://%s?relay=%s&secret=%s", svc.cfg.IdentityPubkey, svc.cfg.Relay, pairingSecretKey)) return c.Render(http.StatusOK, "apps/create.html", map[string]interface{}{ "User": user, "PairingUri": pairingUri,