fix(android): fix null pointer exception at playback start with item metadata (#3879)

* fix(android): fix null pointer exception at playback start with item metadata
This commit is contained in:
Olivier Bouillet
2024-06-07 15:06:49 +02:00
committed by GitHub
parent d4a8c24f65
commit c2cd7529fd
2 changed files with 5 additions and 13 deletions

View File

@@ -15,6 +15,7 @@ import com.brentvatne.common.toolbox.ReactBridgeUtils.safeGetMap
import com.brentvatne.common.toolbox.ReactBridgeUtils.safeGetString
import com.facebook.react.bridge.ReadableMap
import java.util.Locale
import java.util.Objects
/**
* Class representing Source props for host.
@@ -50,6 +51,8 @@ class Source {
*/
var textTracksAllowChuncklessPreparation: Boolean = false
override fun hashCode(): Int = Objects.hash(uriString, uri, startPositionMs, cropStartMs, cropEndMs, extension, metadata, headers)
/** return true if this and src are equals */
override fun equals(other: Any?): Boolean {
if (other == null || other !is Source) return false