expo-libvlc-player 7.1.5 → 7.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -867,7 +867,7 @@ private fun MutableList<String>.normalizeOptions() {
867
867
  val normalized =
868
868
  map { option ->
869
869
  if (!option.startsWith(":")) {
870
- ":" + option.dropWhile { character -> character == "-" }
870
+ ":" + option.dropWhile { character -> character == '-' } // Single quotes required
871
871
  } else {
872
872
  option
873
873
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-libvlc-player",
3
- "version": "7.1.5",
3
+ "version": "7.1.6",
4
4
  "description": "LibVLC Player for Expo",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",