1
0
mirror of https://github.com/KokaKiwi/BarInsta synced 2024-09-27 21:27:30 +00:00

Merge pull request #1113 from tcely/patch-1

Open instagr.am links too
This commit is contained in:
Austin Huang 2021-04-26 17:41:41 -04:00 committed by GitHub
commit df7644f0df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -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>

View File

@ -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");