From 07cde058ed5a0a2efae8f7a1696342efa0bdc061 Mon Sep 17 00:00:00 2001 From: Florian Dupret <34862846+sephrat@users.noreply.github.com> Date: Tue, 9 Nov 2021 14:37:37 +0100 Subject: [PATCH] Fix actor page not loading after actor change --- .../app/discover/components/actor/discover-actor.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Ombi/ClientApp/src/app/discover/components/actor/discover-actor.component.ts b/src/Ombi/ClientApp/src/app/discover/components/actor/discover-actor.component.ts index 72255ee8f..559fb3be2 100644 --- a/src/Ombi/ClientApp/src/app/discover/components/actor/discover-actor.component.ts +++ b/src/Ombi/ClientApp/src/app/discover/components/actor/discover-actor.component.ts @@ -26,9 +26,12 @@ export class DiscoverActorComponent { private route: ActivatedRoute, private filterService: FilterService, private auth: AuthService) { + + this.filter = this.filterService.filter; this.route.params.subscribe((params: any) => { this.actorId = params.actorId; this.isAdmin = this.auth.isAdmin(); + this.search(); }); }