Skip to content

Commit

Permalink
Fix #883 Add pathPrefix to Android intent filter when "scope" is not-…
Browse files Browse the repository at this point in the history
…trivial.
  • Loading branch information
OlegNitz committed Aug 28, 2024
1 parent 2395d6a commit 38e6769
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,11 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https"
android:host="@string/hostName"/>
android:host="@string/hostName"
<% if (fullScopeUrl && fullScopeUrl.pathname !== '/') { %>
android:pathPrefix="<%= fullScopeUrl.pathname %>"
<% } %>
/>
</intent-filter>

<% for (const additionalOrigin of additionalTrustedOrigins) { %>
Expand Down

0 comments on commit 38e6769

Please sign in to comment.