feat: adding installation logs

This commit is contained in:
Chubby Granny Chaser
2025-04-05 03:31:56 +01:00
parent f464850c38
commit ede538392f
7 changed files with 120 additions and 11 deletions

View File

@@ -145,7 +145,7 @@ export class DownloadManager {
userPreferences?.seedAfterDownloadComplete &&
download.downloader === Downloader.Torrent
) {
downloadsSublevel.put(gameId, {
await downloadsSublevel.put(gameId, {
...download,
status: "seeding",
shouldSeed: true,
@@ -154,7 +154,7 @@ export class DownloadManager {
} else {
const shouldExtract = download.automaticallyExtract;
downloadsSublevel.put(gameId, {
await downloadsSublevel.put(gameId, {
...download,
status: "complete",
shouldSeed: false,