Skip to content

Commit 31434a2

Browse files
fix: wrong fresh domain used in hash (#3085)
1 parent f7174d0 commit 31434a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dev/middlewares/automatic_workspace_folders.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function automaticWorkspaceFolders<T>(root: string): MiddlewareFn<T> {
3434
uuid ??= await generate(
3535
NAMESPACE_URL,
3636
new TextEncoder().encode(
37-
`https://fresh.com?root=${encodeURIComponent(root)}&v=${0}`,
37+
`https://fresh.deno.dev?root=${encodeURIComponent(root)}&v=${0}`,
3838
),
3939
);
4040
content ??= JSON.stringify({ workspace: { root, uuid } }, undefined, 2);

0 commit comments

Comments
 (0)