Skip to content

Commit

Permalink
Fix QR code text not being returned - Closes #360
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubka committed Jul 6, 2024
1 parent 4ea7988 commit 17256c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Services/QrCodeService.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static function decode(\Illuminate\Http\UploadedFile $file)
}
}

$data = urldecode($qrcode->text());
$data = urldecode($text);

Log::info('QR code decoded');

Expand Down

0 comments on commit 17256c6

Please sign in to comment.