Send manga field through the server

This commit is contained in:
Luis Ángel San Martín 2021-01-16 14:24:14 +01:00
parent 3ab05c6777
commit 52953633e5

View File

@ -54,6 +54,7 @@ QJsonObject YACReaderServerDataHelper::comicToJSON(const qulonglong libraryId, c
json["title"] = comic.info.title.toString();
json["number"] = comic.info.number.toInt();
json["last_time_opened"] = comic.info.lastTimeOpened.toLongLong();
json["manga"] = comic.info.manga.toBool();
return json;
}