Skip to content

Commit 73feb54

Browse files
committed
Rename method.
1 parent eabc651 commit 73feb54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

IdentityCore/src/webview/response/MSIDSwitchBrowserResponse.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
context:(id<MSIDRequestContext>)context
4343
error:(NSError *__autoreleasing*)error;
4444

45-
+ (BOOL)isMyUrl:(NSURL *)url operation:(NSString *)operation;
45+
+ (BOOL)isDUNAActionUrl:(NSURL *)url operation:(NSString *)operation;
4646

4747
@end

IdentityCore/src/webview/response/MSIDSwitchBrowserResponse.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ - (BOOL)useV2WebResponseHandling
7474
return useV2WebResponseHandling;
7575
}
7676

77-
+ (BOOL)isMyUrl:(NSURL *)url operation:(NSString *)operation
77+
+ (BOOL)isDUNAActionUrl:(NSURL *)url operation:(NSString *)operation
7878
{
7979
if (url == nil) return NO;
8080

@@ -120,7 +120,7 @@ - (BOOL)isMyUrl:(NSURL *)url
120120
return NO;
121121
}
122122

123-
return [self.class isMyUrl:url operation:[self.class operation]];
123+
return [self.class isDUNAActionUrl:url operation:[self.class operation]];
124124
}
125125

126126

0 commit comments

Comments
 (0)