Fixes before Release (#2251)
* Removed console.logs * Removed console.log() from app * Fixed a bug where when a user adds their own favicon to their folder, the check could fail as the www. wasn't being stripped. * Don't fail series metadata update if we can't cleanup due to another update taking place (common with komf)
This commit is contained in:
parent
d7b97d2d93
commit
1895a83033
12 changed files with 13 additions and 83 deletions
|
|
@ -115,14 +115,12 @@ export class CardDetailLayoutComponent implements OnInit, OnChanges {
|
|||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
console.log('[card-detail-layout] ngOnInit')
|
||||
if (this.trackByIdentity === undefined) {
|
||||
this.trackByIdentity = (_: number, item: any) => `${this.header}_${this.updateApplied}_${item?.libraryId}`;
|
||||
}
|
||||
|
||||
if (this.filterSettings === undefined) {
|
||||
this.filterSettings = new FilterSettings();
|
||||
console.log('[card-detail-layout] creating blank FilterSettings');
|
||||
this.cdRef.markForCheck();
|
||||
}
|
||||
|
||||
|
|
@ -180,7 +178,6 @@ export class CardDetailLayoutComponent implements OnInit, OnChanges {
|
|||
this.applyFilter.emit(event);
|
||||
this.updateApplied++;
|
||||
this.filter = event.filterV2;
|
||||
console.log('[card-detail-layout] apply filter')
|
||||
this.cdRef.markForCheck();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue