We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21c15f9 commit 6b7953cCopy full SHA for 6b7953c
lib/woqlClient.js
@@ -1482,10 +1482,10 @@ WOQLClient.prototype.getBranches = function (dbId) {
1482
* @example
1483
* client.getCommitsLog(count=10)
1484
*/
1485
-WOQLClient.prototype.getCommitsLog = function (start=0, count=1) {
+WOQLClient.prototype.getCommitsLog = function (start = 0, count = 1) {
1486
return this.dispatch(
1487
CONST.GET,
1488
- this.connectionConfig.log() + `?start=${start}&count=${count}`,
+ `${this.connectionConfig.log()}?start=${start}&count=${count}`,
1489
);
1490
};
1491
0 commit comments