From 5d1cf8d7fbcc6d6c6c99b42686fab8fbc544f62d Mon Sep 17 00:00:00 2001 From: Benjamin Takats Date: Thu, 1 Dec 2022 20:38:33 +0100 Subject: [PATCH] ln auth added and email service activated --- app/Http/Livewire/Auth/LNUrlAuth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Livewire/Auth/LNUrlAuth.php b/app/Http/Livewire/Auth/LNUrlAuth.php index 5a4188fc..bedf0246 100644 --- a/app/Http/Livewire/Auth/LNUrlAuth.php +++ b/app/Http/Livewire/Auth/LNUrlAuth.php @@ -23,7 +23,7 @@ class LNUrlAuth extends Component public function mount() { $this->k1 = bin2hex(str()->random(32)); - $this->url = url('/lnurl-auth-callback?tag=login&k1='.$this->k1.'&action=login'); + $this->url = url('/api/lnurl-auth-callback?tag=login&k1='.$this->k1.'&action=login'); $this->lnurl = lnurl\encodeUrl($this->url); $this->qrCode = QrCode::size(300) ->generate($this->lnurl);