Bugfix/release cleanup (#512)
* Lots of cleanup on the warnings in the solution. Deprecated IsLastWriteLessThan and made a new method HasFileBeenModifiedSince. * Added some tests for the new extension method. * Changed filter import to use correct import * Scan Series now uses Refresh Metadata for Series, rather than library one. * Fixed an issue where cover generation wasn't properly taking forced update into consideration. Removed a case of cover generation for no reason. * Fixed series downloads not triggering backend call
This commit is contained in:
parent
2a3a08de74
commit
0d2d73e8ae
33 changed files with 116 additions and 131 deletions
|
@ -7,7 +7,7 @@ import { MessageHubService } from './_services/message-hub.service';
|
|||
import { NavService } from './_services/nav.service';
|
||||
import { PresenceHubService } from './_services/presence-hub.service';
|
||||
import { StatsService } from './_services/stats.service';
|
||||
import 'rxjs/add/operator/filter';
|
||||
import { filter } from 'rxjs/operators';
|
||||
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
||||
|
||||
@Component({
|
||||
|
@ -23,7 +23,7 @@ export class AppComponent implements OnInit {
|
|||
|
||||
// Close any open modals when a route change occurs
|
||||
router.events
|
||||
.filter(event => event instanceof NavigationStart)
|
||||
.pipe(filter(event => event instanceof NavigationStart))
|
||||
.subscribe((event) => {
|
||||
if (this.ngbModal.hasOpenModals()) {
|
||||
this.ngbModal.dismissAll();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue