summary refs log tree commit diff
path: root/src/util/util/AutoUpdate.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/util/AutoUpdate.ts')
-rw-r--r--src/util/util/AutoUpdate.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/util/AutoUpdate.ts b/src/util/util/AutoUpdate.ts
index a4a97f3f..1f90a41e 100644
--- a/src/util/util/AutoUpdate.ts
+++ b/src/util/util/AutoUpdate.ts
@@ -1,6 +1,6 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
-	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Spacebar and Spacebar Contributors
 	
 	This program is free software: you can redistribute it and/or modify
 	it under the terms of the GNU Affero General Public License as published
@@ -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);
 	}