Skip to content

Commit

Permalink
Merge pull request #31 from ma3xxx3/patch-1
Browse files Browse the repository at this point in the history
Fix phery_remote command
  • Loading branch information
pocesar committed Feb 19, 2016
2 parents cd37cad + 5ca8826 commit 75fe5ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phery.js
Original file line number Diff line number Diff line change
Expand Up @@ -1578,7 +1578,7 @@
}

if (special || selector.charAt(0) === '<' || selector.search(/^[0-9]+$/) === -1) {
if (special === '!' || special === '=' || special === '+') {
if (special === '!' || special === '=' || special === '+' || special === '-' ) {
cmd = data[selector][0];
self.process_parameters();
}
Expand Down

0 comments on commit 75fe5ca

Please sign in to comment.