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 bb51613 commit 4bb941fCopy full SHA for 4bb941f
src/providers/database.ts
@@ -45,7 +45,8 @@ export class InstanceBuilder {
45
constructor(private instance: string) {}
46
47
ref(path: string): RefBuilder {
48
- return new RefBuilder(apps(), `projects/_/instances/${this.instance}/refs/${path}`);
+ const normalized = normalizePath(path);
49
+ return new RefBuilder(apps(), `projects/_/instances/${this.instance}/refs/${normalized}`);
50
}
51
52
0 commit comments