We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b32dba6 commit 022c0b6Copy full SHA for 022c0b6
src/renderer/utils/InstallerConfiguration.ts
@@ -401,7 +401,8 @@ export class InstallerConfiguration {
401
}
402
403
private static async fetchConfigurationFromCdn(): Promise<Configuration> {
404
- const url = settings.get('mainSettings.configDownloadUrl') as string;
+ const url = `${settings.get('mainSettings.configDownloadUrl') as string}?cache-killer=${Math.random()}`;
405
+
406
console.log('Obtaining configuration from CDN (%s)', url);
407
return await fetch(url)
408
.then((res) => res.blob())
0 commit comments