mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-22 06:37:30 +00:00
v16.6-a7
This commit is contained in:
parent
f7e5914df8
commit
28afeab0ea
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user