mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 13:04:28 -04:00
Fix comparison
This commit is contained in:
@ -32,7 +32,7 @@ void SyncControllerV2::service(HttpRequest &request, HttpResponse &response)
|
|||||||
|
|
||||||
if(comicInfoProgress.length() == 6)
|
if(comicInfoProgress.length() == 6)
|
||||||
{
|
{
|
||||||
if (comicInfoProgress.at(0) == "unknown")
|
if (comicInfoProgress.at(0) != "unknown")
|
||||||
{
|
{
|
||||||
libraryId = comicInfoProgress.at(0).toULongLong();
|
libraryId = comicInfoProgress.at(0).toULongLong();
|
||||||
comicId = comicInfoProgress.at(1).toULongLong();
|
comicId = comicInfoProgress.at(1).toULongLong();
|
||||||
|
Reference in New Issue
Block a user