feat: adding libtorrent again

This commit is contained in:
Chubby Granny Chaser 2024-06-27 14:57:25 +01:00
parent e08aa9c299
commit 47ab35421c
No known key found for this signature in database

View File

@ -54,7 +54,7 @@ export function HeroPanelPlaytime() {
if (!game) return null;
const hasDownload =
["active", "paused"].includes(game.status) && game.progress !== 1;
["active", "paused"].includes(game.status as string) && game.progress !== 1;
const isGameDownloading =
game.status === "active" && lastPacket?.game.id === game.id;