Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
fix redirect on deployed version breaking CORP in Safari/Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
hybridherbst committed Apr 20, 2024
1 parent 5564aa9 commit 160c71f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/routes/(assets)/[...path]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export let data;
function getViewerUrl(abs: string) {
const encoded = encodeURIComponent(abs);
return base + "/view?file=" + encoded;
return base + "/view/?file=" + encoded;
// return "https://usd-viewer.glitch.me/?file=" + encoded;
}
Expand Down

0 comments on commit 160c71f

Please sign in to comment.