# HG changeset patch
# User bsw
# Date 1612913453 -3600
# Node ID 123eb46b4d3e2a4ea0ef7091591326c58da05156
# Parent 9cf1f17ac730d67dcf6554ea271e7bf3d80b0fc9
Fixed base url for fetch request
diff -r 9cf1f17ac730 -r 123eb46b4d3e app/main/_layout/default.html
--- a/app/main/_layout/default.html Wed Feb 10 00:30:17 2021 +0100
+++ b/app/main/_layout/default.html Wed Feb 10 00:30:53 2021 +0100
@@ -7,6 +7,7 @@
+
diff -r 9cf1f17ac730 -r 123eb46b4d3e static/js/xhr.js
--- a/static/js/xhr.js Wed Feb 10 00:30:17 2021 +0100
+++ b/static/js/xhr.js Wed Feb 10 00:30:53 2021 +0100
@@ -19,7 +19,7 @@
data.append("issue_id", issueId);
data.append("interested", interested);
- fetch("/lf/interest/xhr_update", {
+ fetch(baseURL + "/interest/xhr_update", {
method : "POST",
body: data
}).then(