Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
aluisiora committed Feb 6, 2018
2 parents 77a125a + 0ebb30a commit 58aeb82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "routeros-client",
"version": "0.5.1",
"version": "0.5.2",
"description": "Easy to use abstraction layer over the node-routeros API",
"main": "./dist/index",
"types": "./dist/index",
Expand Down
4 changes: 2 additions & 2 deletions src/RosApiCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class RosApiCommands extends RouterOSAPICrud {
* @param value the value if a string key is passed
*/
public query(key: object | string, value?: string): RosApiCommands {
return this.where(key, value);
return this.where(key, value, false);
}

/**
Expand All @@ -106,7 +106,7 @@ export class RosApiCommands extends RouterOSAPICrud {
* @param value the value if a string key is passed
*/
public filter(key: object | string, value?: string): RosApiCommands {
return this.where(key, value);
return this.where(key, value, false);
}

/**
Expand Down

0 comments on commit 58aeb82

Please sign in to comment.