fix: prevent the delete status from changing unless a new request is made"

refactor: remove parent remove change until later date

refactor: remove console log
This commit is contained in:
OwsleyJr
2025-07-22 20:21:33 -04:00
parent 325eecbad1
commit ccaa7da212

View File

@@ -110,7 +110,10 @@ class BaseScanner<T> {
if (existing) {
let changedExisting = false;
if (existing[is4k ? 'status4k' : 'status'] !== MediaStatus.AVAILABLE) {
if (
existing[is4k ? 'status4k' : 'status'] !== MediaStatus.AVAILABLE &&
existing[is4k ? 'status4k' : 'status'] !== MediaStatus.DELETED
) {
existing[is4k ? 'status4k' : 'status'] = processing
? MediaStatus.PROCESSING
: MediaStatus.AVAILABLE;