Skip to content

Commit a100271

Browse files
committed
properly copy init parameter
1 parent fa2918a commit a100271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FirebaseUI/Auth/AuthProviderUI/Google/Source/FIRGoogleAuthUI.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ - (instancetype)initWithClientID:(NSString *)clientID scopes:(NSArray *)scopes {
8080
self = [super init];
8181
if (self) {
8282
_clientID = [clientID copy];
83-
_scopes = scopes;
83+
_scopes = [scopes copy];
8484
}
8585
return self;
8686
}

0 commit comments

Comments
 (0)