mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 11:04:25 -04:00
Missing ;
This commit is contained in:
@ -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());
|
||||
|
Reference in New Issue
Block a user