From a30b04a503b1903a6a40eaa5dc69179954f92276 Mon Sep 17 00:00:00 2001 From: Foxster Date: Tue, 30 Jan 2024 12:35:05 -0800 Subject: [PATCH] Attempt to fix hide channel watermark --- Sources/uYouPlus.xm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sources/uYouPlus.xm b/Sources/uYouPlus.xm index a5cdbf6..1f48f0a 100644 --- a/Sources/uYouPlus.xm +++ b/Sources/uYouPlus.xm @@ -87,6 +87,11 @@ NSBundle *tweakBundle = uYouPlusBundle(); else { return %orig; } } %end +%hook YTColdConfig +- (BOOL)iosEnableFeaturedChannelWatermarkOverlayFix { + return IS_ENABLED(@"hideChannelWatermark_enabled") ? NO : %orig; +} +%end // Hide next and previous buttons %group gHidePreviousAndNextButton