Commit 45078b10 authored by Thomas's avatar Thomas
Browse files

FP when playing audio

parent 75139a85
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -131,6 +131,7 @@ public class FragmentMedia extends Fragment {
        binding.loader.setVisibility(View.VISIBLE);
        scheduleStartPostponedTransition(binding.mediaPicture);
        if (Helper.isValidContextForGlide(requireActivity()) && isAdded()) {
            String finalType1 = type;
            Glide.with(requireActivity())
                    .asDrawable()
                    .dontTransform()
@@ -193,7 +194,7 @@ public class FragmentMedia extends Fragment {
                                        binding.loader.setVisibility(View.GONE);
                                        Glide.with(requireActivity())
                                                .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();
                                        binding.loadRemote.setVisibility(View.VISIBLE);
                                        binding.loadRemote.setOnClickListener(v -> {
+3 −1
Original line number Diff line number Diff line
@@ -8,6 +8,8 @@ Changed:

Fixed:
- URL in upper cases
- GIF does not honor nsfw
- 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
 No newline at end of file