Release Shakeout Part 2 (#1267)

* Fixed manga reader and removed debug code

* Removed some console.logs
This commit is contained in:
Joseph Milazzo 2022-05-20 21:05:09 -05:00 committed by GitHub
parent 92010379f1
commit 81082508f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 3 additions and 9 deletions

View file

@ -89,7 +89,6 @@ export class LibraryDetailComponent implements OnInit, OnDestroy {
private utilityService: UtilityService, public navService: NavService, private filterUtilityService: FilterUtilitiesService) {
const routeId = this.route.snapshot.paramMap.get('libraryId');
if (routeId === null) {
console.log('Redirecting due to not seeing libraryId in route');
this.router.navigateByUrl('/libraries');
return;
}
@ -146,10 +145,8 @@ export class LibraryDetailComponent implements OnInit, OnDestroy {
if (library === undefined) {
lib = {id: this.libraryId, name: this.libraryName};
}
console.log('lib: ', lib);
switch (action) {
case(Action.ScanLibrary):
console.log('action handler');
this.actionService.scanLibrary(lib);
break;
case(Action.RefreshMetadata):