fix: add imdbId assignment for existing media entries

This commit is contained in:
fallenbagel
2025-12-13 12:42:21 +08:00
parent 6fac2964c3
commit c6e4e0446c

View File

@@ -147,6 +147,11 @@ class BaseScanner<T> {
changedExisting = true;
}
if (imdbId && !existing.imdbId) {
existing.imdbId = imdbId;
changedExisting = true;
}
if (
serviceId !== undefined &&
existing[is4k ? 'serviceId4k' : 'serviceId'] !== serviceId