Encode group location in the status.json file.

This commit is contained in:
Juliusz Chroboczek
2022-09-01 15:38:29 +02:00
parent 4bc873a574
commit b55e531aa5
5 changed files with 67 additions and 34 deletions
+1 -1
View File
@@ -110,7 +110,7 @@ async function listPublicGroups() {
let td = document.createElement('td');
let a = document.createElement('a');
a.textContent = group.displayName || group.name;
a.href = '/group/' + group.name + '/';
a.href = group.location;
td.appendChild(a);
tr.appendChild(td);
let td2 = document.createElement('td');