Change default to autoplay enabled

This commit is contained in:
Bryce Hackel 2024-04-10 00:25:08 -07:00
parent 7967b9617c
commit 1cb7c37da1
No known key found for this signature in database
GPG key ID: F031960F08455E88

View file

@ -1418,4 +1418,8 @@ static BOOL findCell(ASNodeController *nodeController, NSArray <NSString *> *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"];
}
}