Skip to content

Commit

Permalink
Attempt to resolve issue #7
Browse files Browse the repository at this point in the history
  • Loading branch information
zmxv committed Dec 25, 2015
1 parent 123bf18 commit 82209a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-sound",
"version": "0.7.1",
"version": "0.7.2",
"description": "React Native module for playing sound clips on iOS and Android",
"main": "sound.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion sound.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var RNSound = require('react-native').NativeModules.RNSound;
var IsAndroid = !!RNSound.setLooping;
var IsAndroid = (typeof RNSound.setLooping) !== 'undefined';

var nextKey = 0;

Expand Down

0 comments on commit 82209a0

Please sign in to comment.