0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 02:10:44 -05:00

Fix launcher thinking profile deletion failed

This commit is contained in:
DrakiaXYZ 2025-01-19 16:26:04 -08:00
parent ad782e5906
commit 5bb9bd3fb1

View File

@ -221,6 +221,6 @@ export class SaveServer {
await this.fileSystem.remove(file);
return !this.fileSystem.exists(file);
return !(await this.fileSystem.exists(file));
}
}