Fix type propagation from the container folder

This commit is contained in:
Luis Ángel San Martín
2024-01-19 16:44:12 +01:00
parent abdf5bda4f
commit 7a72e7588b
2 changed files with 5 additions and 3 deletions

View File

@ -361,7 +361,7 @@ void LibraryCreator::insertComic(const QString &relativePath, const QFileInfo &f
}
comic.parentId = _currentPathFolders.last().id;
comic.info.type = QVariant::fromValue(_currentPathFolders.last().type); // TODO_METADATA test this
comic.info.type = QVariant::fromValue(_currentPathFolders.last().type);
DBHelper::insert(&comic, _database, parsed);
}