From 05fa9ff3178ea25993f9c14dd1c8f390459709e0 Mon Sep 17 00:00:00 2001 From: Ajay Date: Tue, 9 Sep 2025 03:40:50 -0400 Subject: [PATCH] Fix skip profile fallback for toggle settings not working --- src/utils/skipProfiles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/skipProfiles.ts b/src/utils/skipProfiles.ts index 453dad9a..7e0a6af0 100644 --- a/src/utils/skipProfiles.ts +++ b/src/utils/skipProfiles.ts @@ -74,7 +74,7 @@ export function getSkipProfileNum(key: "minDuration"): number { function getSkipProfileValue(key: keyof CustomConfiguration): T { const profile = getSkipProfile(); - if (profile && profile[key] !== undefined) { + if (profile && profile[key] !== null) { return profile[key] as T; }