hyochan / react-native-audio-recorder-player

react-native native module for audio recorder and player.
MIT License
681 stars 203 forks source link

Fix crash for invalid audio URL #581

Closed RajRohitYadav closed 5 months ago

RajRohitYadav commented 5 months ago

mTimer!!.cancel() was causing a crash when the URL was not a valid audio file. Have changed it to mTimer?.cancel(). Example: audioRecorderPlayer.startPlayer('https://www.google.com')