object image cache fix

This commit is contained in:
2023-10-06 02:53:06 +05:00
parent bc4de6510a
commit 6d2d93a1bf
3 changed files with 9 additions and 10 deletions

View File

@ -353,7 +353,7 @@ async function removeImageBackground(image) {
// }
}
list.push(img);
img.src = array[i];
img.src = `${array[i]}?${new Date().getTime()}`;
if(i==array.length-1){
callback();
}