Austin Huang
4 years ago
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
3 changed files with
7 additions and
2 deletions
-
app/build.gradle
-
app/src/main/java/awais/instagrabber/activities/PostViewer.java
-
app/src/main/java/awais/instagrabber/activities/ProfileViewer.java
|
|
@ -10,7 +10,7 @@ android { |
|
|
|
targetSdkVersion 29 |
|
|
|
|
|
|
|
versionCode 27 |
|
|
|
versionName '16.6-a6' |
|
|
|
versionName '16.6-a7' |
|
|
|
|
|
|
|
multiDexEnabled true |
|
|
|
|
|
|
|
|
|
@ -361,7 +361,10 @@ public final class PostViewer extends BaseLanguageActivity { |
|
|
|
private void searchUsername(final String text) { |
|
|
|
if (Main.scanHack != null) { |
|
|
|
Main.scanHack.onResult(text); |
|
|
|
finish(); |
|
|
|
setResult(6969); |
|
|
|
Intent intent = new Intent(getApplicationContext(), Main.class); |
|
|
|
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); |
|
|
|
startActivity(intent); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -98,6 +98,8 @@ public final class ProfileViewer extends BaseLanguageActivity { |
|
|
|
|
|
|
|
final RequestManager glideRequestManager = Glide.with(this); |
|
|
|
|
|
|
|
if (glideRequestManager == null) return; |
|
|
|
|
|
|
|
glideRequestManager.load(profilePicUrl).addListener(new RequestListener<Drawable>() { |
|
|
|
@Override |
|
|
|
public boolean onLoadFailed(@Nullable final GlideException e, final Object model, final Target<Drawable> target, final boolean isFirstResource) { |
|
|
|