Skip to content

Commit

Permalink
Allow signup button on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Cobbe committed May 4, 2017
1 parent c90146d commit 13d17f2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ - (instancetype)initWithAppKey:(NSString *)appKey host:(NSString *)host {
_cancelURL = [NSURL URLWithString:[NSString stringWithFormat:@"db-%@://2/cancel", _appKey]];
_host = host;
_urls = [NSMutableArray arrayWithObjects:_redirectURL, nil];
#ifdef TARGET_OS_MAC
_disableSignup = NO;
#else
_disableSignup = YES;
#endif
}
return self;
}
Expand Down

0 comments on commit 13d17f2

Please sign in to comment.