Scanner Logging (#2997)

This commit is contained in:
Joe Milazzo 2024-06-12 12:14:52 -05:00 committed by GitHub
parent 094e775f0b
commit a6a60c4221
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 106 additions and 6 deletions

View file

@ -211,7 +211,7 @@ export class LibraryDetailComponent implements OnInit {
const seriesRemoved = event.payload as SeriesRemovedEvent;
if (seriesRemoved.libraryId !== this.libraryId) return;
if (!this.utilityService.deepEqual(this.filter, this.filterActiveCheck)) {
this.loadPage();
this.loadPage(); // TODO: This can be quite expensive when bulk deleting. We can refactor this to an ReplaySubject to debounce
return;
}