mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Fix comparison
This commit is contained in:
parent
8ea201ece9
commit
66aa2c60c6
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user