Skip to content

Commit

Permalink
fix(configuration): fixed path when initializing a configuration panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Valdo Romao committed Sep 22, 2021
1 parent fb162af commit 420ce78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Features/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export async function initConfiguration(assetsUrl?: string | undefined): Promise
if (!tag || WA.player.tags.includes(tag)) {
WA.ui.registerMenuCommand("Configure the room", () => {
assetsUrl = assetsUrl ?? defaultAssetsUrl;
WA.nav.openCoWebSite(assetsUrl + "configuration.html", true);
WA.nav.openCoWebSite(assetsUrl + "/configuration.html", true);
});
}
}
Expand Down

0 comments on commit 420ce78

Please sign in to comment.