Made image API node chooser sort by job amount instead of CPU usage, added soundreload

This commit is contained in:
TheEssem 2021-01-08 12:08:10 -06:00
parent 55da0db479
commit c2bd68263b
5 changed files with 70 additions and 73 deletions

View file

@ -60,7 +60,8 @@ exports.getCounts = async () => {
exports.addCount = async (command) => {
const count = await connection.query("SELECT * FROM counts WHERE command = $1", [command]);
await connection.query("UPDATE counts SET count = $1 WHERE command = $2", [count.rows[0].count + 1, command]);
if (count.rows[0].count) await connection.query("INSERT INTO counts (command, count) VALUES ($1, $2)", [command, 0]);
await connection.query("UPDATE counts SET count = $1 WHERE command = $2", [count.rows[0].count ? count.rows[0].count + 1 : 1, command]);
};
exports.addGuild = async (guild) => {