Updated Project Source code (I don't remember what i did.)

This commit is contained in:
netkas 2024-09-24 14:20:49 -04:00
parent fc2e4d5a73
commit 4879fdf36d
10 changed files with 289 additions and 10 deletions

View file

@ -37,11 +37,7 @@ abstract class Method
try
{
if(!SessionManager::sessionExists($request->getSessionUuid()))
{
throw new StandardException(sprintf("The requested session %s was not found", $request->getSessionUuid()), StandardError::SESSION_NOT_FOUND);
}
// NOTE: If the session UUID was provided, it has already been validated up until this point
return SessionManager::getSession($request->getSessionUuid());
}
catch(DatabaseOperationException $e)