client: fix incorrect enum values for repeat. closes #189
This commit is contained in:
parent
8c2b78efc8
commit
f36efe16c7
1 changed files with 2 additions and 2 deletions
|
|
@ -10,8 +10,8 @@ module.exports = PlayerClient;
|
|||
var compareSortKeyAndId = makeCompareProps(['sortKey', 'id']);
|
||||
|
||||
PlayerClient.REPEAT_OFF = 0;
|
||||
PlayerClient.REPEAT_ALL = 1;
|
||||
PlayerClient.REPEAT_ONE = 2;
|
||||
PlayerClient.REPEAT_ONE = 1;
|
||||
PlayerClient.REPEAT_ALL = 2;
|
||||
|
||||
util.inherits(PlayerClient, EventEmitter);
|
||||
function PlayerClient(socket) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue