Updated Fake Premium Alert

This commit is contained in:
arichornlover 2024-05-08 20:36:17 -05:00 committed by GitHub
parent c4992b15ae
commit 9b5587c268
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1098,7 +1098,7 @@ extern NSBundle *uYouPlusBundle();
// Alert if the version is partially incompatible and the toggle is being turned on
NSComparisonResult result = [appVersion compare:@"18.35.4" options:NSNumericSearch];
if (enable && result == NSOrderedAscending) {
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Incompatible" message:[NSString stringWithFormat:@"Warning: The \"You\" Tab doesn't exist in v%@.\nFake Logo will still work.", appVersion] preferredStyle:UIAlertControllerStyleAlert];
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Warning" message:[NSString stringWithFormat:@"The \"You\" Tab doesn't exist in v%@, fake buttons will not be created.\nBut the \"Fake Premium Logo\" will still work.", appVersion] preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alert addAction:okAction];
[settingsViewController presentViewController:alert animated:YES completion:nil];