Browse Source

"ig.me/u/..." doesn't exist anymore? so removed it

renovate/org.robolectric-robolectric-4.x
Austin Huang 3 years ago
committed by GitHub
parent
commit
42dfe01220
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/src/main/java/awais/instagrabber/utils/IntentUtils.java

2
app/src/main/java/awais/instagrabber/utils/IntentUtils.java

@ -32,7 +32,7 @@ public final class IntentUtils {
if (1 == paths.size()) {
text = path;
type = IntentModelType.USERNAME;
} else if ("_u".equals(path) || "u".equals(path)) {
} else if ("_u".equals(path)) {
text = paths.get(1);
type = IntentModelType.USERNAME;
} else if ("p".equals(path) || "reel".equals(path) || "tv".equals(path)) {

Loading…
Cancel
Save