enhancement(lint): Fix lint errors for src/modules/status.ts

Co-authored-by: NeonGamerBot-QK <neon@saahild.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
zeon-neon[bot] 2025-02-28 23:36:56 +00:00 committed by GitHub
parent 34abd907b2
commit 7ccadc6fa7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ export async function getJellyfinStatus(): Promise<string | null> {
let str = `${isMovie ? "🍿" : ""}📺️ ${title}`;
return str;
} catch (e: any) {
return `:x: ${e.message}`
return `:x: ${e.message}`;
}
}
export async function getSpotifyStatus(): Promise<string | null> {