Add intent filter for odysee.com links
This commit is contained in:
parent
1e3a74cae1
commit
376e28adcb
2 changed files with 2 additions and 1 deletions
|
@ -72,6 +72,7 @@
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.VIEW" />
|
<action android:name="android.intent.action.VIEW" />
|
||||||
<data android:scheme="https" android:host="open.lbry.com"/>
|
<data android:scheme="https" android:host="open.lbry.com"/>
|
||||||
|
<data android:scheme="https" android:host="odysee.com"/>
|
||||||
<data android:scheme="https" android:host="lbry.tv" android:pathPattern="/..*/*" />
|
<data android:scheme="https" android:host="lbry.tv" android:pathPattern="/..*/*" />
|
||||||
<data android:scheme="https" android:host="lbry.tv" android:pathPattern="/.*:.*" />
|
<data android:scheme="https" android:host="lbry.tv" android:pathPattern="/.*:.*" />
|
||||||
<data android:scheme="https" android:host="lbry.tv" android:pathPattern="/.*#.*" />
|
<data android:scheme="https" android:host="lbry.tv" android:pathPattern="/.*#.*" />
|
||||||
|
|
|
@ -24,7 +24,7 @@ public class LbryUri {
|
||||||
public static final int CLAIM_ID_MAX_LENGTH = 40;
|
public static final int CLAIM_ID_MAX_LENGTH = 40;
|
||||||
|
|
||||||
private static final String REGEX_PART_PROTOCOL = "^((?:lbry://|https://)?)";
|
private static final String REGEX_PART_PROTOCOL = "^((?:lbry://|https://)?)";
|
||||||
private static final String REGEX_PART_HOST = "((?:open.lbry.com/|lbry.tv/|lbry.lat/|lbry.fr/|lbry.in/)?)";
|
private static final String REGEX_PART_HOST = "((?:open.lbry.com/|odysee.com/|lbry.tv/|lbry.lat/|lbry.fr/|lbry.in/)?)";
|
||||||
private static final String REGEX_PART_STREAM_OR_CHANNEL_NAME = "([^:$#/]*)";
|
private static final String REGEX_PART_STREAM_OR_CHANNEL_NAME = "([^:$#/]*)";
|
||||||
private static final String REGEX_PART_MODIFIER_SEPARATOR = "([:$#]?)([^/]*)";
|
private static final String REGEX_PART_MODIFIER_SEPARATOR = "([:$#]?)([^/]*)";
|
||||||
private static final String QUERY_STRING_BREAKER = "^([\\S]+)([?][\\S]*)";
|
private static final String QUERY_STRING_BREAKER = "^([\\S]+)([?][\\S]*)";
|
||||||
|
|
Loading…
Reference in a new issue