Merge branch 'module/poll' into dev
All checks were successful
Build Docker Image / Docker-Build (push) Successful in 2m23s
Build Docker Image / Clean-Registry (push) Successful in -6s

This commit is contained in:
2026-03-10 15:34:23 +01:00
4 changed files with 23 additions and 4 deletions

View File

@@ -16,8 +16,8 @@
let res = await get(url);
if (res.ok){
poll = await res.json();
if (poll.selection) selection = poll.selection;
yikes();
console.log(Object.entries(poll.weights).sort((a,b) => a[0] - b[0]));
} else error(res);
}