From 9e7737dcda2452160052d3919c6e105561909d26 Mon Sep 17 00:00:00 2001 From: atultiwaree <2010344.bca.cbsa@cgc.edu.in> Date: Wed, 26 Jul 2023 14:46:46 +0530 Subject: [PATCH 1/2] Fixed javascript syntax error --- Video.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Video.js b/Video.js index dc451d3e..3db14237 100644 --- a/Video.js +++ b/Video.js @@ -77,7 +77,7 @@ export default class Video extends Component { this.setNativeProps({ fullscreen: false }); }; - save = async (options?) => { + save = async (options) => { return await NativeModules.VideoManager.save(options, findNodeHandle(this._root)); } From 9816ee192bb8f1c30a9145b853801181e42c3bae Mon Sep 17 00:00:00 2001 From: atultiwaree <2010344.bca.cbsa@cgc.edu.in> Date: Wed, 26 Jul 2023 15:35:49 +0530 Subject: [PATCH 2/2] Fixed javascript syntax error --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b94ab4c3..d069ee07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ ## Changelog + + ### Version 6.0.0-alpha.6 - Feature: Video range support [#3030](https://github.com/react-native-video/react-native-video/pull/3030) - iOS: remove undocumented `currentTime` property [#3064](https://github.com/react-native-video/react-native-video/pull/3064) - iOS: make sure that the audio in ads is muted when the player is muted. [#3068](https://github.com/react-native-video/react-native-video/pull/3077) - iOS: make IMA build optionnal +- Android: Fixed syntax error [#3182](https://github.com/react-native-video/react-native-video/issues/3182) ### Version 6.0.0-alpha.5