Skip to content

Commit 0cd7afc

Browse files
committed
Fix recursion
1 parent abdeb28 commit 0cd7afc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ export class Database {
453453
if (!absolutePath) {
454454
basePath = `/_db/${this.name}${basePath || ""}`;
455455
}
456-
return this.request({ basePath, ...opts }, transform);
456+
return this._connection.request({ basePath, ...opts }, transform);
457457
}
458458

459459
async acquireHostList(): Promise<void> {

0 commit comments

Comments
 (0)