Skip to content

Commit 9100d99

Browse files
authored
Merge pull request #1323 from AzureAD/rapong/pathFix
Add extra '/' in the example intent filter
2 parents dc72cfe + 31c2273 commit 9100d99

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changelog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-android/wiki
22

33
vNext
4+
- [PATCH] Add extra '/' in the example intent filter (#1323)
45
- [MINOR] Changes to Broker Validation to allow setting whether to trust debug brokers (prod brokers are always trusted) (#1274)
56
- [PATCH] Better PublicClientApplicationConfiguration validation to fail when empty string is passed (#1324)
67

msal/src/main/java/com/microsoft/identity/client/helper/BrokerHelperActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class BrokerHelperActivity extends Activity {
2929
" <category android:name=\"android.intent.category.BROWSABLE\" />\n" +
3030
" <data\n" +
3131
" android:host=\"%s\"\n" +
32-
" android:path=\"%s\"\n" +
32+
" android:path=\"/%s\"\n" +
3333
" android:scheme=\"msauth\" />\n" +
3434
" </intent-filter>\n" +
3535
"</activity>";

0 commit comments

Comments
 (0)