fix timestamp

This commit is contained in:
caranicas 2022-09-27 09:46:32 -04:00
parent 7a076f7304
commit 5a105eb2b3

View File

@ -122,8 +122,9 @@ export default function MakeButton() {
console.log('progess step of total', step, total_steps); console.log('progess step of total', step, total_steps);
if (void 0 !== outputs) { if (void 0 !== outputs) {
outputs.forEach((output: any) => { outputs.forEach((output: any) => {
console.log('progress path', output.path); const timePath = `${output.path}?t=${new Date().getTime()}`
addProgressImage(output.path); console.log('progress path', timePath);
addProgressImage(timePath);
}); });
} }