aboutsummaryrefslogtreecommitdiff
path: root/src/ipcMain/updater/http.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipcMain/updater/http.ts')
-rw-r--r--src/ipcMain/updater/http.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcMain/updater/http.ts b/src/ipcMain/updater/http.ts
index 902d644..3b38144 100644
--- a/src/ipcMain/updater/http.ts
+++ b/src/ipcMain/updater/http.ts
@@ -69,7 +69,7 @@ async function fetchUpdates() {
return false;
data.assets.forEach(({ name, browser_download_url }) => {
- if (["patcher.js", "preload.js", "renderer.js"].some(s => name.startsWith(s))) {
+ if (["patcher.js", "preload.js", "renderer.js", "renderer.css"].some(s => name.startsWith(s))) {
PendingUpdates.push([name, browser_download_url]);
}
});