Skip to content

Commit

Permalink
Fix recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
pluma committed Feb 25, 2020
1 parent 4c47738 commit 04b3e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ export class Database {
if (!absolutePath) {
basePath = `/_db/${this.name}${basePath || ""}`;
}
return this.request({ basePath, ...opts }, transform);
return this._connection.request({ basePath, ...opts }, transform);
}

async acquireHostList(): Promise<void> {
Expand Down

0 comments on commit 04b3e7e

Please sign in to comment.