mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 19:14:30 -04:00
fixed comics management on server sersion
This commit is contained in:
@ -210,7 +210,16 @@ QSet<QString> HttpSession::getDownloadedComics()
|
||||
if(dataPtr)
|
||||
return dataPtr->yacreaderSessionData.downloadedComics ;
|
||||
else
|
||||
return QSet<QString>();
|
||||
return QSet<QString>();
|
||||
}
|
||||
|
||||
void HttpSession::clearComics()
|
||||
{
|
||||
if(dataPtr)
|
||||
{
|
||||
dataPtr->yacreaderSessionData.comicsOnDevice.clear();
|
||||
dataPtr->yacreaderSessionData.downloadedComics.clear();
|
||||
}
|
||||
}
|
||||
//current comic (import)
|
||||
qulonglong HttpSession::getCurrentComicId()
|
||||
|
Reference in New Issue
Block a user