Merge pull request #10349 from vector-im/bwindels/cachebust-config

Cachebust config file requests
This commit is contained in:
Bruno Windels
2019-07-16 11:06:57 +00:00
committed by GitHub

View File

@@ -37,7 +37,7 @@ export async function getVectorConfig(relativeLocation) {
function getConfig(configJsonFilename) {
return new Promise(function(resolve, reject) {
request(
{ method: "GET", url: configJsonFilename },
{ method: "GET", url: configJsonFilename, qs: { cachebuster: Date.now() } },
(err, response, body) => {
try {
if (err || response.status < 200 || response.status >= 300) {