Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
aa12dfad
Commit
aa12dfad
authored
Nov 27, 2022
by
AUTOMATIC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the bug that makes it impossible to send images to other tabs
parent
39827a39
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
generation_parameters_copypaste.py
modules/generation_parameters_copypaste.py
+4
-3
No files found.
modules/generation_parameters_copypaste.py
View file @
aa12dfad
...
@@ -2,6 +2,8 @@ import base64
...
@@ -2,6 +2,8 @@ import base64
import
io
import
io
import
os
import
os
import
re
import
re
from
pathlib
import
Path
import
gradio
as
gr
import
gradio
as
gr
from
modules.shared
import
script_path
from
modules.shared
import
script_path
from
modules
import
shared
from
modules
import
shared
...
@@ -35,9 +37,8 @@ def quote(text):
...
@@ -35,9 +37,8 @@ def quote(text):
def
image_from_url_text
(
filedata
):
def
image_from_url_text
(
filedata
):
if
type
(
filedata
)
==
dict
and
filedata
[
"is_file"
]:
if
type
(
filedata
)
==
dict
and
filedata
[
"is_file"
]:
filename
=
filedata
[
"name"
]
filename
=
filedata
[
"name"
]
tempdir
=
os
.
path
.
normpath
(
tempfile
.
gettempdir
())
is_in_right_dir
=
any
(
Path
(
temp_dir
)
.
resolve
()
in
Path
(
filename
)
.
resolve
()
.
parents
for
temp_dir
in
shared
.
demo
.
temp_dirs
)
normfn
=
os
.
path
.
normpath
(
filename
)
assert
is_in_right_dir
,
'trying to open image file outside of allowed directories'
assert
normfn
.
startswith
(
tempdir
),
'trying to open image file not in temporary directory'
return
Image
.
open
(
filename
)
return
Image
.
open
(
filename
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment