Commit 91a15dca authored by Sakura-Luna's avatar Sakura-Luna

Use a new way to solve webpage refresh

parent 5c66fedb
......@@ -2,6 +2,7 @@ import os
import tempfile
from collections import namedtuple
from pathlib import Path
from time import time
import gradio as gr
......@@ -34,7 +35,7 @@ def check_tmp_file(gradio, filename):
def save_pil_to_file(pil_image, dir=None):
already_saved_as = getattr(pil_image, 'already_saved_as', None)
if already_saved_as and os.path.isfile(already_saved_as):
register_tmp_file(shared.demo, already_saved_as)
register_tmp_file(shared.demo, f'{already_saved_as}?{int(time())}')
file_obj = Savedfile(already_saved_as)
return file_obj
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment