From 44421c4b5d2aaa3ddf761484aaf52bf97a2bddc8 Mon Sep 17 00:00:00 2001 From: Ajay Date: Tue, 12 Apr 2022 10:29:44 -0400 Subject: [PATCH] Refresh segments on config change --- src/content.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/content.ts b/src/content.ts index 2ebfc38e..5055070d 100644 --- a/src/content.ts +++ b/src/content.ts @@ -234,6 +234,9 @@ function contentConfigUpdateListener(changes: StorageChangesObject) { case "hideDeleteButtonPlayerControls": updateVisibilityOfPlayerControlsButton() break; + case "categorySelections": + sponsorsLookup(sponsorVideoID); + break; } } }