From f5fa640e68366ec21082a990d840e6956a385c80 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Mon, 29 Mar 2021 12:29:18 +0200 Subject: [PATCH] remove providerUid on session verification for anon login --- src/Appwrite/Auth/Auth.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Appwrite/Auth/Auth.php b/src/Appwrite/Auth/Auth.php index 18a2837f5a..1e8dbc93d8 100644 --- a/src/Appwrite/Auth/Auth.php +++ b/src/Appwrite/Auth/Auth.php @@ -227,7 +227,6 @@ class Auth if ($session->isSet('secret') && $session->isSet('expire') && $session->isSet('provider') && - $session->isSet('providerUid') && $session->getAttribute('secret') === self::hash($secret) && $session->getAttribute('expire') >= \time()) { return (string)$session->getId();