From 74b97662956e83d125c6c47fb22371b14ce391ec Mon Sep 17 00:00:00 2001 From: David Sinclair Date: Thu, 6 May 2021 19:52:20 -0700 Subject: [PATCH] #1461 (using beta.newsblur.com) --- clients/ios/NewsBlur_Prefix.pch | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/clients/ios/NewsBlur_Prefix.pch b/clients/ios/NewsBlur_Prefix.pch index e7fea059a..caefed592 100644 --- a/clients/ios/NewsBlur_Prefix.pch +++ b/clients/ios/NewsBlur_Prefix.pch @@ -9,6 +9,7 @@ //#define DEBUG 1 //#define PROD_DEBUG 1 +#define PROD_BETA 1 #ifdef DEBUG #define BACKGROUND_REFRESH_SECONDS 5 @@ -18,6 +19,10 @@ #define BACKGROUND_REFRESH_SECONDS 5 #define DEFAULT_NEWSBLUR_URL [NSString stringWithFormat:@"http://debug.newsblur.com"] #define DEFAULT_ICONS_HOST [NSString stringWithFormat:@"https://s3.amazonaws.com/icons.newsblur.com"] +#elif PROD_BETA + #define BACKGROUND_REFRESH_SECONDS 10*60 + #define DEFAULT_NEWSBLUR_URL [NSString stringWithFormat:@"https://beta.newsblur.com"] + #define DEFAULT_ICONS_HOST [NSString stringWithFormat:@"https://s3.amazonaws.com/icons.newsblur.com"] #else #define BACKGROUND_REFRESH_SECONDS 10*60 #define DEFAULT_NEWSBLUR_URL [NSString stringWithFormat:@"https://www.newsblur.com"]