From 1cb7c37da148c901452899a3b1490b5ea324d11d Mon Sep 17 00:00:00 2001 From: Bryce Hackel <34104885+bhackel@users.noreply.github.com> Date: Wed, 10 Apr 2024 00:25:08 -0700 Subject: [PATCH] Change default to autoplay enabled --- Sources/uYouPlus.xm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Sources/uYouPlus.xm b/Sources/uYouPlus.xm index d7dbc1d..c1c5a1a 100644 --- a/Sources/uYouPlus.xm +++ b/Sources/uYouPlus.xm @@ -1418,4 +1418,8 @@ static BOOL findCell(ASNodeController *nodeController, NSArray *ide if (![allKeys containsObject:@"YouPiPEnabled"]) { [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"YouPiPEnabled"]; } + // Broken uYou setting, change default to allow autoplay, user can disable later + if (![allKeys containsObject:@"noSuggestedVideoAtEnd"]) { + [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"noSuggestedVideoAtEnd"]; + } }