Remove arbitrary metro url redirect timeout

This commit is contained in:
Daniel Supernault 2022-05-13 23:59:00 -06:00
parent 6a1b9d82d9
commit 84209c2433
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 0 additions and 3 deletions

View File

@ -35,7 +35,6 @@ class SpaController extends Controller
isset($post['local']) &&
$post['local'] === true
) {
sleep(5);
return redirect($post['url']);
}
@ -55,8 +54,6 @@ class SpaController extends Controller
$account = AccountService::get($id);
sleep(5);
if($account && isset($account['url']) && $account['local']) {
return redirect($account['url']);
}