add timestamp to url

pull/5370/head
bunsenstraat 3 years ago committed by Aniket
parent 657d5ffb66
commit 29b00461a9
  1. 2
      apps/remix-ide/src/app/plugins/parser/code-parser.tsx

@ -118,6 +118,8 @@ export class CodeParser extends Plugin {
})
this.on('solidity', 'loadingCompiler', async (url) => {
// add timestamp to avoid caching
url = url + '?t=' + Date.now()
this.compilerService.compiler.loadVersion(true, url)
})

Loading…
Cancel
Save