Browse Source
Replace instagr.am with instagram.com
renovate/org.robolectric-robolectric-4.x
tcely
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
app/src/main/java/awais/instagrabber/utils/IntentUtils.java
|
|
@ -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"); |
|
|
|
|
|
|
|