mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 07:57:28 +00:00
commit
df7644f0df
@ -54,6 +54,8 @@
|
||||
<data android:scheme="https" />
|
||||
<data android:host="ig.me" />
|
||||
<data android:host="www.ig.me" />
|
||||
<data android:host="instagr.am" />
|
||||
<data android:host="www.instagr.am" />
|
||||
<data android:host="instagram.com" />
|
||||
<data android:host="www.instagram.com" />
|
||||
<data android:pathPrefix="/" />
|
||||
@ -173,4 +175,4 @@
|
||||
android:value="Noto Color Emoji Compat" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
</manifest>
|
||||
|
@ -12,6 +12,9 @@ public final class IntentUtils {
|
||||
|
||||
@Nullable
|
||||
public static IntentModel parseUrl(@NonNull String url) {
|
||||
if (url.contains("instagr.am/")) {
|
||||
url = url.replaceFirst("s?://(?:www\\.)?instagr\\.am/", "s://www.instagram.com/");
|
||||
}
|
||||
final int wwwDel = url.contains("www.") ? 4 : 0;
|
||||
final boolean isHttps = url.startsWith("https");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user