diff options
author | andrewrasch <raschykid@gmail.com> | 2021-09-22 05:00:53 +0000 |
---|---|---|
committer | andrewrasch <raschykid@gmail.com> | 2021-09-22 05:00:53 +0000 |
commit | cac32b4394c6b924ff44e06da3e190520cb8cd48 (patch) | |
tree | 9e56680a602492a51f65bd5f8863c1242862ef8a /app/src/main/AndroidManifest.xml | |
parent | 1fb3ba6e3fa57904bdde486d5f6bb793be788f71 (diff) | |
download | infinity-for-reddit-cac32b4394c6b924ff44e06da3e190520cb8cd48.tar infinity-for-reddit-cac32b4394c6b924ff44e06da3e190520cb8cd48.tar.gz infinity-for-reddit-cac32b4394c6b924ff44e06da3e190520cb8cd48.tar.bz2 infinity-for-reddit-cac32b4394c6b924ff44e06da3e190520cb8cd48.tar.lz infinity-for-reddit-cac32b4394c6b924ff44e06da3e190520cb8cd48.tar.xz infinity-for-reddit-cac32b4394c6b924ff44e06da3e190520cb8cd48.tar.zst infinity-for-reddit-cac32b4394c6b924ff44e06da3e190520cb8cd48.zip |
Added path patterns to other links
Fixes bug where only google amp links open in Infinity
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 71 |
1 files changed, 47 insertions, 24 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index f17f60e8..e709293f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -272,77 +272,100 @@ <data android:host="www.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*"/> <data android:host="reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="www.google.com" android:scheme="https" - android:pathPattern="/amp/s/amp.reddit.com/.*"/> + android:pathPattern="/amp/s/amp.reddit.com/.*" /> <data android:host="v.redd.it" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="amp.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="m.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="old.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="new.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="np.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="reddit.app.link" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="redd.it" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="s.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="click.redditmail.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="www.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="amp.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="m.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="old.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="new.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="np.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="reddit.app.link" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="redd.it" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="s.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="click.redditmail.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> </intent-filter> </activity> <activity |