mirror of
https://github.com/YACReader/yacreader
synced 2025-06-03 17:18:23 -04:00
Missing ;
This commit is contained in:
parent
72a8d318c9
commit
cea26ecc20
@ -161,9 +161,10 @@ QVariant FolderModel::data(const QModelIndex &index, int role) const
|
||||
return item->data(FolderModel::Finished);
|
||||
|
||||
if (role == FolderModel::MangaRole)
|
||||
return item->data(FolderModel::Manga)
|
||||
return item->data(FolderModel::Manga);
|
||||
|
||||
if (role == FolderModel::IdRole) return item->id;
|
||||
if (role == FolderModel::IdRole)
|
||||
return item->id;
|
||||
|
||||
if (role == FolderModel::CoverPathRole)
|
||||
return getCoverUrlPathForComicHash(item->data(FirstChildHash).toString());
|
||||
|
Loading…
x
Reference in New Issue
Block a user