Merge pull request #2596 from vector-im/rav/cachebust_version

Add a cachebuster to /version
pull/2603/head
Richard van der Hoff 2016-11-17 17:36:26 +00:00 committed by GitHub
commit 6d954ad7e0
1 changed files with 11 additions and 1 deletions

View File

@ -128,8 +128,18 @@ export default class WebPlatform extends VectorBasePlatform {
_getVersion() {
const deferred = q.defer();
// We add a cachebuster to the request to make sure that we know about
// the most recent version on the origin server. That might not
// actually be the version we'd get on a reload (particularly in the
// presence of intermediate caching proxies), but still: we're trying
// to tell the user that there is a new version.
request(
{ method: "GET", url: "version" },
{
method: "GET",
url: "version",
qs: { cachebuster: Date.now() },
},
(err, response, body) => {
if (err || response.status < 200 || response.status >= 300) {
if (err == null) err = { status: response.status };