diff --git a/web/client/actions/version.js b/web/client/actions/version.js index c436dd6f8c..0e4b59a97e 100644 --- a/web/client/actions/version.js +++ b/web/client/actions/version.js @@ -41,7 +41,11 @@ export function loadVersionError(e) { */ export function loadVersion(config = 'version.txt') { return (dispatch) => { - return axios.get(config).then((response) => { + return axios.get(config, { + params: { + t: new Date().getTime() + } + }).then((response) => { dispatch(changeVersion(response.data)); }).catch((e) => { dispatch(loadVersionError(e));