mirror of
https://github.com/YACReader/yacreader
synced 2025-07-20 14:04:40 -04:00
local server now runs in a separated thread
This commit is contained in:
@ -214,7 +214,12 @@ void MainWindowViewer::openFromArgv()
|
||||
|
||||
currentComicDB.id = comicId;
|
||||
YACReaderLocalClient client;
|
||||
|
||||
/*int tries = 0;
|
||||
bool success = false;
|
||||
while(!(success = client.requestComicInfo(libraryId,currentComicDB,siblingComics)) && tries < 3)
|
||||
{
|
||||
tries++;
|
||||
}*/
|
||||
if(client.requestComicInfo(libraryId,currentComicDB,siblingComics))
|
||||
{
|
||||
isClient = true;
|
||||
|
Reference in New Issue
Block a user