This commit is contained in:
wukko
2023-08-23 01:03:31 +06:00
parent 749c00a691
commit fc89cb566b
7 changed files with 15 additions and 17 deletions

View File

@@ -7,9 +7,7 @@ import changelogManager from "../changelog/changelogManager.js";
let com = getCommitInfo();
let enabledServices = Object.keys(s).filter((p) => {
if (s[p].enabled) return true;
}).sort().map((p) => {
let enabledServices = Object.keys(s).filter(p => s[p].enabled).sort().map((p) => {
return `<br>&bull; ${s[p].alias ? s[p].alias : p}`
}).join('').substring(4)