Fix member label emoji ignoring use system emoji preference.

This commit is contained in:
jeffrey-signal
2026-02-20 09:41:04 -05:00
committed by Cody Henthorne
parent fa2b0aedb0
commit 7e605fb6de
5 changed files with 88 additions and 45 deletions

View File

@@ -7,10 +7,13 @@ package org.thoughtcrime.securesms.video.videoconverter.exceptions
class EncodingException : Exception {
/** Whether the input video was HDR content. */
@JvmField var isHdrInput: Boolean = false
/** Whether HDR-to-SDR tone-mapping was successfully applied to the decoder. */
@JvmField var toneMapApplied: Boolean = false
/** The name of the video decoder codec that was selected, or null if decoder creation failed. */
@JvmField var decoderName: String? = null
/** The name of the video encoder codec that was selected, or null if encoder creation failed. */
@JvmField var encoderName: String? = null