Skip to content

Commit ce57f04

Browse files
committed
remove extra '/' in the exception. Path already contains it
1 parent fad26cf commit ce57f04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msal/src/main/java/com/microsoft/identity/client/PublicClientApplicationConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ public void checkIntentFilterAddedToAppManifestForBrokerFlow() throws MsalClient
541541
"\t\t" + "<category android:name=\"android.intent.category.BROWSABLE\" />" + "\n" +
542542
"\t\t" + "<data" + "\n" +
543543
"\t\t\t" + "android:host=\"" + redirectUri.getHost() + "\"" + "\n" +
544-
"\t\t\t" + "android:path=\"/" + redirectUri.getPath() + "\"" + "\n" +
544+
"\t\t\t" + "android:path=\"" + redirectUri.getPath() + "\"" + "\n" +
545545
"\t\t\t" + "android:scheme=\"" + redirectUri.getScheme() + "\" />" + "\n" +
546546
"\t" + "</intent-filter>" + "\n" +
547547
"</activity>" + "\n");

0 commit comments

Comments
 (0)