mirror of
https://github.com/YACReader/yacreader
synced 2025-07-15 19:44:32 -04:00
Fixed access to Static::yacreaderSessionStore
members.
This commit is contained in:
@ -18,7 +18,7 @@ PageController::PageController() {}
|
||||
void PageController::service(HttpRequest& request, HttpResponse& response)
|
||||
{
|
||||
HttpSession session=Static::sessionStore->getSession(request,response,false);
|
||||
YACReaderHttpSession *ySession = Static::yacreaderSessionStore.value(session.getId());
|
||||
YACReaderHttpSession *ySession = Static::yacreaderSessionStore->getYACReaderSessionHttpSession(session.getId());
|
||||
|
||||
QString path = QUrl::fromPercentEncoding(request.getPath()).toUtf8();
|
||||
bool remote = path.endsWith("remote");
|
||||
|
Reference in New Issue
Block a user