Skip to content

Commit 6b7953c

Browse files
committed
review
1 parent 21c15f9 commit 6b7953c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/woqlClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1482,10 +1482,10 @@ WOQLClient.prototype.getBranches = function (dbId) {
14821482
* @example
14831483
* client.getCommitsLog(count=10)
14841484
*/
1485-
WOQLClient.prototype.getCommitsLog = function (start=0, count=1) {
1485+
WOQLClient.prototype.getCommitsLog = function (start = 0, count = 1) {
14861486
return this.dispatch(
14871487
CONST.GET,
1488-
this.connectionConfig.log() + `?start=${start}&count=${count}`,
1488+
`${this.connectionConfig.log()}?start=${start}&count=${count}`,
14891489
);
14901490
};
14911491

0 commit comments

Comments
 (0)