Skip to content

Commit

Permalink
fix broken send to extras button
Browse files Browse the repository at this point in the history
  • Loading branch information
AUTOMATIC1111 committed Jan 3, 2023
1 parent 82cfc22 commit 3e22e29
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/generation_parameters_copypaste.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ def quote(text):


def image_from_url_text(filedata):
if type(filedata) == dict and filedata["is_file"]:
if type(filedata) == list and len(filedata) > 0 and type(filedata[0]) == dict and filedata[0].get("is_file", False):
filedata = filedata[0]

if type(filedata) == dict and filedata.get("is_file", False):
filename = filedata["name"]
is_in_right_dir = ui_tempdir.check_tmp_file(shared.demo, filename)
assert is_in_right_dir, 'trying to open image file outside of allowed directories'
Expand Down

0 comments on commit 3e22e29

Please sign in to comment.