fix: pid in api call

This commit is contained in:
Barış Soner Uşaklı
2024-06-09 21:04:55 -04:00
parent 0d645c994f
commit 70625133ae

View File

@@ -44,7 +44,7 @@ define('forum/topic/votes', [
$this.attr('title', ''); $this.attr('title', '');
} }
api.get(`/posts/${pid}/upvoters`, {}, function (err, data) { api.get(`/posts/${encodeURIComponent(pid)}/upvoters`, {}, function (err, data) {
if (err) { if (err) {
return alerts.error(err); return alerts.error(err);
} }
@@ -110,7 +110,7 @@ define('forum/topic/votes', [
if (!canSeeVotes()) { if (!canSeeVotes()) {
return; return;
} }
api.get(`/posts/${pid}/voters`, {}, function (err, data) { api.get(`/posts/${encodeURIComponent(pid)}/voters`, {}, function (err, data) {
if (err) { if (err) {
return alerts.error(err); return alerts.error(err);
} }