fix(vikon): redirect OAuth callback to /dashboard/vikon-updates/callback

This commit is contained in:
F4ilji
2026-07-04 18:14:53 +05:00
parent 3424553d39
commit 90d7cbc270
+1 -1
View File
@@ -7,7 +7,7 @@ $query = http_build_query(array_filter([
'state' => $state, 'state' => $state,
])); ]));
$redirectUrl = '/dashboard/vikon-updates' . ($query ? '?' . $query : ''); $redirectUrl = '/dashboard/vikon-updates/callback' . ($query ? '?' . $query : '');
header('Location: ' . $redirectUrl, true, 302); header('Location: ' . $redirectUrl, true, 302);
exit; exit;