1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/util/AutoUpdate.ts b/src/util/util/AutoUpdate.ts
index 8365d9ae..1f90a41e 100644
--- a/src/util/util/AutoUpdate.ts
+++ b/src/util/util/AutoUpdate.ts
@@ -78,8 +78,8 @@ async function download(url: string, dir: string) {
const agent = new ProxyAgent();
const response = await fetch(url, { agent });
const buffer = await response.buffer();
- const tempDir = await fs.mkdtemp("fosscord");
- await fs.writeFile(path.join(tempDir, "Fosscord.zip"), buffer);
+ const tempDir = await fs.mkdtemp("spacebar");
+ await fs.writeFile(path.join(tempDir, "Spacebar.zip"), buffer);
} catch (error) {
console.error(`[Auto Update] download failed`, error);
}
|