diff --git a/Application/AppController.m b/Application/AppController.m index 6784a69d5..45854ef76 100644 --- a/Application/AppController.m +++ b/Application/AppController.m @@ -478,8 +478,9 @@ increase/decrease as long as the user holds the left/right, plus/minus button */ [userDefaultsValuesDict setObject:[NSNumber numberWithBool:YES] forKey:@"remoteEnabled"]; [userDefaultsValuesDict setObject:[NSNumber numberWithBool:YES] forKey:@"remoteOnlyOnActive"]; - NSString * feedURLdefault = @"https://kode54.net/cog/mercury.xml"; + NSString * feedURLdefault = @"https://www.kode54.net/cog/mercury.xml"; NSString * feedURLbroken = @"https://kode54.net/cog/stable.xml"; + NSString * feedURLbroken2 = @"https://kode54.net/cog/mercury.xml"; [userDefaultsValuesDict setObject:feedURLdefault forKey:@"SUFeedURL"]; @@ -499,7 +500,8 @@ increase/decrease as long as the user holds the left/right, plus/minus button */ [[NSUserDefaults standardUserDefaults] synchronize]; //And if the existing feed URL is broken due to my ineptitude with the above defaults, fix it - if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"SUFeedURL"] isEqualToString:feedURLbroken]) + if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"SUFeedURL"] isEqualToString:feedURLbroken] || + [[[NSUserDefaults standardUserDefaults] stringForKey:@"SUFeedURL"] isEqualToString:feedURLbroken2]) [[NSUserDefaults standardUserDefaults] setValue:feedURLdefault forKey:@"SUFeedURL"]; //Add observers diff --git a/Info.plist b/Info.plist index 1406fa56a..fa7832fc9 100644 --- a/Info.plist +++ b/Info.plist @@ -1027,6 +1027,6 @@ NSPrincipalClass MediaKeysApplication SUFeedURL - https://kode54.net/cog/mercury.xml + https://www.kode54.net/cog/mercury.xml diff --git a/Preferences/General/AppcastArrayController.m b/Preferences/General/AppcastArrayController.m index 468d1b659..8a35efa35 100644 --- a/Preferences/General/AppcastArrayController.m +++ b/Preferences/General/AppcastArrayController.m @@ -29,7 +29,7 @@ [self addObject: [NSDictionary dictionaryWithObjectsAndKeys: - NSLocalizedStringFromTableInBundle(@"kode54.net wheneverly", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://kode54.net/cog/mercury.xml", @"url",nil]]; + NSLocalizedStringFromTableInBundle(@"kode54.net wheneverly", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"https://www.kode54.net/cog/mercury.xml", @"url",nil]]; } @end