FP when playing audio
This commit is contained in:
parent
75139a8523
commit
45078b10b0
|
@ -131,6 +131,7 @@ public class FragmentMedia extends Fragment {
|
||||||
binding.loader.setVisibility(View.VISIBLE);
|
binding.loader.setVisibility(View.VISIBLE);
|
||||||
scheduleStartPostponedTransition(binding.mediaPicture);
|
scheduleStartPostponedTransition(binding.mediaPicture);
|
||||||
if (Helper.isValidContextForGlide(requireActivity()) && isAdded()) {
|
if (Helper.isValidContextForGlide(requireActivity()) && isAdded()) {
|
||||||
|
String finalType1 = type;
|
||||||
Glide.with(requireActivity())
|
Glide.with(requireActivity())
|
||||||
.asDrawable()
|
.asDrawable()
|
||||||
.dontTransform()
|
.dontTransform()
|
||||||
|
@ -193,7 +194,7 @@ public class FragmentMedia extends Fragment {
|
||||||
binding.loader.setVisibility(View.GONE);
|
binding.loader.setVisibility(View.GONE);
|
||||||
Glide.with(requireActivity())
|
Glide.with(requireActivity())
|
||||||
.load(attachment.remote_url).into(binding.mediaPicture);
|
.load(attachment.remote_url).into(binding.mediaPicture);
|
||||||
} else {
|
} else if (finalType1.equalsIgnoreCase("image")) {
|
||||||
Toasty.error(requireActivity(), getString(R.string.toast_error_media), Toasty.LENGTH_SHORT).show();
|
Toasty.error(requireActivity(), getString(R.string.toast_error_media), Toasty.LENGTH_SHORT).show();
|
||||||
binding.loadRemote.setVisibility(View.VISIBLE);
|
binding.loadRemote.setVisibility(View.VISIBLE);
|
||||||
binding.loadRemote.setOnClickListener(v -> {
|
binding.loadRemote.setOnClickListener(v -> {
|
||||||
|
|
|
@ -8,6 +8,8 @@ Changed:
|
||||||
|
|
||||||
Fixed:
|
Fixed:
|
||||||
- URL in upper cases
|
- URL in upper cases
|
||||||
- GIF does not honor nsfw
|
|
||||||
- Issues with Peertube player
|
- Issues with Peertube player
|
||||||
|
- False positive error when listening to audio
|
||||||
|
- GIF does not honor nsfw
|
||||||
|
- Polls having html
|
||||||
- Fix crashes when scrolling timeline with animated gif
|
- Fix crashes when scrolling timeline with animated gif
|
Loading…
Reference in New Issue