mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-22 22:57:29 +00:00
parent
ed4095a6ef
commit
960ac3e180
@ -425,7 +425,7 @@ public class DirectMessageThreadFragment extends Fragment {
|
|||||||
@Override
|
@Override
|
||||||
public void onDestroy() {
|
public void onDestroy() {
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
listViewModel.getList().postValue(Collections.emptyList());
|
if (listViewModel != null) listViewModel.getList().postValue(Collections.emptyList());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void sendText(final String text, final String itemId, final boolean delete) {
|
private void sendText(final String text, final String itemId, final boolean delete) {
|
||||||
|
@ -755,12 +755,14 @@ public class ProfileFragment extends Fragment implements SwipeRefreshLayout.OnRe
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void showProfilePicDialog() {
|
private void showProfilePicDialog() {
|
||||||
final FragmentManager fragmentManager = getParentFragmentManager();
|
if (profileModel != null) {
|
||||||
final ProfilePicDialogFragment fragment = new ProfilePicDialogFragment(profileModel.getId(), username, profileModel.getHdProfilePic());
|
final FragmentManager fragmentManager = getParentFragmentManager();
|
||||||
final FragmentTransaction ft = fragmentManager.beginTransaction();
|
final ProfilePicDialogFragment fragment = new ProfilePicDialogFragment(profileModel.getId(), username, profileModel.getHdProfilePic());
|
||||||
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN)
|
final FragmentTransaction ft = fragmentManager.beginTransaction();
|
||||||
.add(fragment, "profilePicDialog")
|
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN)
|
||||||
.commit();
|
.add(fragment, "profilePicDialog")
|
||||||
|
.commit();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setUsernameDelayed() {
|
private void setUsernameDelayed() {
|
||||||
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionSha256Sum=10065868c78f1207afb3a92176f99a37d753a513dff453abb6b5cceda4058cda
|
distributionSha256Sum=5252d2f1a984e5518e604678b3964bb0227c4573fcc880b92548bc687c851704
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-rc-5-all.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
Loading…
Reference in New Issue
Block a user