Fix typo in 'sessionCheck' function name

This commit is contained in:
William Collishaw
2019-06-07 19:58:21 -06:00
parent 59886b084a
commit 462818aad7
2 changed files with 2 additions and 2 deletions

View File

@@ -96,7 +96,7 @@ public class AccountClient
}
}
public boolean sesssionCheck()
public boolean sessionCheck()
{
HttpUrl url = RuneLiteAPI.getApiBase().newBuilder()
.addPathSegment("account")

View File

@@ -94,7 +94,7 @@ public class SessionManager
// Check if session is still valid
AccountClient accountClient = new AccountClient(session.getUuid());
if (!accountClient.sesssionCheck())
if (!accountClient.sessionCheck())
{
log.debug("Loaded session {} is invalid", session.getUuid());
return;