Skip to content

Commit

Permalink
fix responses
Browse files Browse the repository at this point in the history
  • Loading branch information
leonowski committed Aug 20, 2016
1 parent 0a9d24e commit ab24889
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.js
Expand Up @@ -14,7 +14,7 @@ applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({playing})
res.json("playing")
}
});
});
Expand All @@ -28,7 +28,7 @@ applescript.execString(script, function(error, result) {
if (error) {
res.json({error: error});
} else {
res.json({pausing})
res.json("pausing")
}
});
});
Expand Down

0 comments on commit ab24889

Please sign in to comment.