-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RSA10d #493
RSA10d #493
Conversation
Not entirely sure I understand the |
So I had to check that all attributes except |
Ok, thanks, I do follow now, sorry about that! |
Please review and merge if everything looks good |
@@ -25,6 +25,7 @@ @implementation ARTAuth { | |||
ARTTokenParams *_tokenParams; | |||
// Dedicated to Protocol Message | |||
NSString *_protocolClientId; | |||
BOOL _isOnlyForceTrue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this an instance property of the ARTAuth class when it's only relevant inside the authorise
method? Shouldn't it be declared as a local there?
if (error) { | ||
callback(nil, error); | ||
} else { | ||
[self executeTokenRequest:tokenRequest callback:callback]; | ||
} | ||
_isOnlyForceTrue = NO; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change doesn't have any effect, does it? The only other place where _isOnlyForceTrue
is used is in authorise
, and there it's always being set before being read.
@EvgenyKarkan I am aware that this change is a 0.9 change that is breaking i.e. we should not be merging this into It may be worth having a quick catch up today / tomorrow to discuss our 0.8/0.9 strategy |
4d73eb5
to
b675c33
Compare
Will change the base to |
681a1ca
to
ed072b2
Compare
Squashed. |
@mattheworiordan @tcard Are you happy with this? |
@mattheworiordan Just clarifying, i'm confused. Why are you saying that this is a 0.9 change and should not be merged? From what I saw, the 0.9 removes the |
LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.