From 9f8e4d5deb41f5f71c229b350953399f5e2bcbd4 Mon Sep 17 00:00:00 2001 From: Armands Malejevs Date: Thu, 18 May 2023 12:14:49 +0300 Subject: [PATCH] Fix typo --- .../main/java/com/brentvatne/exoplayer/ReactExoplayerView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java b/android/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java index 25643a8afb..a9f825a9c9 100644 --- a/android/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java +++ b/android/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java @@ -962,7 +962,7 @@ private void initializeMuxData(ReactExoplayerView self) { customerPlayerData.setPlayerInitTime(self.muxOptions.getInt("player_init_time")); // Video data - CustomerVideoData customerVideoData(new CustomerVideoData()); + CustomerVideoData customerVideoData = new CustomerVideoData(); customerVideoData.setVideoTitle(self.muxOptions.getString("video_title")); customerVideoData.setVideoId(self.muxOptions.getString("video_id")); customerVideoData.setVideoDrmType(self.muxOptions.getString("video_drm_type"));