From dea98d5e870cfac2052ae06f42454dd03be1e951 Mon Sep 17 00:00:00 2001 From: fogelito Date: Wed, 6 Jul 2022 19:13:30 +0300 Subject: [PATCH] sessionVerify Remove var_dump --- src/Appwrite/Auth/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Auth/Auth.php b/src/Appwrite/Auth/Auth.php index 9caf8a7c07..e45a03c6ff 100644 --- a/src/Appwrite/Auth/Auth.php +++ b/src/Appwrite/Auth/Auth.php @@ -254,7 +254,7 @@ class Auth $session->getAttribute('secret') === self::hash($secret) && $session->getAttribute('expire') >= Database::getCurrentDateTime() ) { - return (string)$session->getId(); + return $session->getId(); } }