Skip to content

Commit

Permalink
Fix phery_remote command
Browse files Browse the repository at this point in the history
Small fix of parameters processing for phery_remote command.
  • Loading branch information
ma3xxx3 committed Feb 18, 2016
1 parent cd37cad commit 5ca8826
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 5ca8826

Please sign in to comment.