Fixes for invitations

This commit is contained in:
David Bomba 2021-10-14 18:58:13 +11:00
parent 8d9ff01251
commit e319af89d9

View File

@ -59,7 +59,7 @@ class SetInviteDb
$hashed_db = $hashids->decode($segments[0]);
}
if(is_array($hashed_db) && ($hashed_db[0] == "01" || $hashed_db[0] == "02")){
if($hashed_db && is_array($hashed_db) && ($hashed_db[0] == "01" || $hashed_db[0] == "02")){
MultiDB::setDB(MultiDB::DB_PREFIX.str_pad($hashed_db[0], 2, '0', STR_PAD_LEFT));