mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-07 23:47:30 +00:00
fix indentations
This commit is contained in:
parent
892bfa336f
commit
78caa4286a
@ -447,12 +447,12 @@ public class StoryViewerFragment extends Fragment {
|
||||
}
|
||||
});
|
||||
binding.swipeUp.setOnClickListener(v -> {
|
||||
final Object tag = v.getTag();
|
||||
if (tag instanceof CharSequence) {
|
||||
final Object tag = v.getTag();
|
||||
if (tag instanceof CharSequence) {
|
||||
new AlertDialog.Builder(context)
|
||||
.setTitle(R.string.swipe_up_confirmation)
|
||||
.setMessage(tag.toString()).setPositiveButton(R.string.yes, (d, w) -> Utils.openURL(context, tag.toString()))
|
||||
.setNegativeButton(R.string.no, (d, w) -> d.dismiss()).show();
|
||||
.setTitle(R.string.swipe_up_confirmation)
|
||||
.setMessage(tag.toString()).setPositiveButton(R.string.yes, (d, w) -> Utils.openURL(context, tag.toString()))
|
||||
.setNegativeButton(R.string.no, (d, w) -> d.dismiss()).show();
|
||||
}
|
||||
});
|
||||
binding.viewStoryPost.setOnClickListener(v -> {
|
||||
|
Loading…
Reference in New Issue
Block a user