File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -378,7 +378,7 @@ export const initDb = async (setProgressPercent?: (p: number) => void) => {
378
378
sha512 : staticSha512 ,
379
379
size : staticSize ,
380
380
} : { sha512 : string ; size : number } = await promiseAny (
381
- infoUrls . map ( ( url ) => fetch ( `${ url } /static.info.json` ) )
381
+ infoUrls . map ( ( url ) => fetch ( `${ url } /static.info.json?_= ${ + new Date ( ) } ` ) )
382
382
) . then ( ( res ) => res . json ( ) ) ;
383
383
384
384
setProgressPercent ( 4 ) ;
@@ -387,7 +387,7 @@ export const initDb = async (setProgressPercent?: (p: number) => void) => {
387
387
sha512 : resultSha512 ,
388
388
size : resultSize ,
389
389
} : { sha512 : string ; size : number } = await promiseAny (
390
- infoUrls . map ( ( url ) => fetch ( `${ url } /result.info.json` ) )
390
+ infoUrls . map ( ( url ) => fetch ( `${ url } /result.info.json?_= ${ + new Date ( ) } ` ) )
391
391
) . then ( ( res ) => res . json ( ) ) ;
392
392
393
393
setProgressPercent ( 8 ) ;
You can’t perform that action at this time.
0 commit comments