mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 13:34:44 -04:00
Avoid null values for issues' title coming from Comic Vine
This commit is contained in:
@ -553,7 +553,9 @@ ComicDB ComicVineDialog::parseComicInfo(ComicDB & comic, const QString & json, i
|
||||
QString synopsis = result.property("description").toString().remove(QRegExp("<[^>]*>")); //description
|
||||
QString characters = getCharacters(result.property("character_credits"));
|
||||
|
||||
comic.info.title = title;
|
||||
if (title != "null") {
|
||||
comic.info.title = title;
|
||||
}
|
||||
|
||||
comic.info.number = number;
|
||||
comic.info.count = count;
|
||||
|
Reference in New Issue
Block a user