Avoid some errors (less noisy log)

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad 2026-01-06 17:55:44 +00:00
parent 398305eb66
commit e4991d81d7
No known key found for this signature in database
GPG key ID: 5E39D70B4C93C38E

View file

@ -136,6 +136,10 @@ void ResourceFolderLoadTask::getFromMetadata()
{
m_index_dir.refresh();
for (auto entry : m_index_dir.entryList(QDir::Files)) {
if (!entry.endsWith(".pw.toml")) {
continue;
}
auto metadata = Metadata::get(m_index_dir, entry);
if (!metadata.isValid())