Fix Option Name

This commit is contained in:
arichorn 2023-07-13 20:01:01 -05:00 committed by GitHub
parent 525fd8cb4d
commit 7109d20eeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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