Skip to content

Commit

Permalink
chore(utils): remove unnecessary await (#3124)
Browse files Browse the repository at this point in the history
  • Loading branch information
iiio2 authored Jan 4, 2025
1 parent e59f5db commit 154fdaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/utils/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export async function deleteApp(server: string) {
export async function listServers() {
const keys = await storage.getKeys('servers:v3:')
const servers = new Set<string>()
for await (const key of keys) {
for (const key of keys) {
const id = key.split(':')[2]
if (id)
servers.add(id.toLocaleLowerCase())
Expand Down

0 comments on commit 154fdaa

Please sign in to comment.