Skip to content

Commit a6001ee

Browse files
committed
fix: output realm as raw in urls
1 parent f37189e commit a6001ee

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

static/character-achievements.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
$totalRow.prependTo($("#progress-bars")); // Move the total bar to the top
215215
}
216216
217-
$.getJSON(`{{websiteRoot}}/character/{{realm}}/{{guid}}/achievements/data`, (data) => {
217+
$.getJSON(`{{websiteRoot}}/character/{{{realm}}}/{{guid}}/achievements/data`, (data) => {
218218
achievementsData = data;
219219
220220
const $summaryLink = $("<a>")

static/guild.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
serverSide: true,
6868
searchDelay: 800,
6969
ajax: {
70-
url: `{{websiteRoot}}/guild/{{realm}}/{{id}}/members`,
70+
url: `{{websiteRoot}}/guild/{{{realm}}}/{{id}}/members`,
7171
},
7272
columnDefs: [
7373
{

0 commit comments

Comments
 (0)