From 7109d20eeb84b344245e23a60d66d9d6d818908a Mon Sep 17 00:00:00 2001 From: arichorn <78001398+arichorn@users.noreply.github.com> Date: Thu, 13 Jul 2023 20:01:01 -0500 Subject: [PATCH] Fix Option Name --- uYouPlus.xm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uYouPlus.xm b/uYouPlus.xm index 98a1562..142abd3 100644 --- a/uYouPlus.xm +++ b/uYouPlus.xm @@ -699,7 +699,7 @@ static void replaceTab(YTIGuideResponse *response) { // Disable Double Tap to Skip (Legacy Version) %hook YTDoubleTapToSeekController - (void)enableDoubleTapToSeek:(BOOL)arg1 { - return IsEnabled(@"disableDoubleTapToSkipLegacy_disabled") ? %orig(NO) : %orig; + return IsEnabled(@"disableDoubleTapToSkipLegacy_enabled") ? %orig(NO) : %orig; } %end