fix(scanner): apply metadata adjustments during reconciliation

This commit is contained in:
pixelpaws
2025-10-23 07:34:35 +08:00
parent d945c58d51
commit 8d336320c0
4 changed files with 155 additions and 4 deletions

View File

@@ -678,6 +678,9 @@ class ModelScanner:
if root_path:
model_data = await self._process_model_file(path, root_path)
if model_data:
model_data = self.adjust_cached_entry(dict(model_data))
if not model_data:
continue
# Add to cache
self._cache.raw_data.append(model_data)
self._cache.add_to_version_index(model_data)