mirror of https://github.com/vector-im/riot-web
cachebust config file requests
parent
9de26ed062
commit
2cf1aabcba
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue