From 5140e6a3d0b3a84720476a25c670ed34898bdbff Mon Sep 17 00:00:00 2001 From: Julian Locke Date: Mon, 6 Dec 2021 15:22:30 -0500 Subject: [PATCH] Fix disable_signup paramter conditional --- .../Shared/Handwritten/OAuth/DBOAuthManager.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.m b/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.m index b6996279b..19ad3ce5d 100644 --- a/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.m +++ b/Source/ObjectiveDropboxOfficial/Shared/Handwritten/OAuth/DBOAuthManager.m @@ -137,7 +137,7 @@ - (instancetype)initWithAppKey:(NSString *)appKey host:(NSString *)host redirect _cancelURL = [NSURL URLWithString:[NSString stringWithFormat:@"db-%@://2/cancel", _appKey]]; _host = host; _urls = [NSMutableArray arrayWithObjects:_redirectURL, nil]; -#ifdef TARGET_OS_OSX +#if TARGET_OS_OSX _disableSignup = NO; #else _disableSignup = YES;