react-native-theoplayer 1.5.0 → 1.6.0

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.
@@ -210,7 +210,9 @@ public class ReactTHEOplayerView extends FrameLayout implements LifecycleEventLi
210
210
  player.play();
211
211
  }
212
212
 
213
- seekTo(this.seekTime);
213
+ if (this.seekTime != TIME_UNSET) {
214
+ seekTo(this.seekTime);
215
+ }
214
216
  }
215
217
  }, 1);
216
218
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-theoplayer",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "A THEOplayer video component for react-native.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",