mirror of
https://github.com/penpot/penpot.git
synced 2025-07-19 19:47:26 +02:00
Merge pull request #6715 from penpot/alotor-bug-fix-workaround
🐛 Fix problem fetching images
This commit is contained in:
commit
40c33c7dcc
1 changed files with 3 additions and 1 deletions
|
@ -26,7 +26,9 @@
|
|||
|
||||
(defn- fix-webkit-data-uri
|
||||
[duri]
|
||||
(str/replace duri webkit-datauri-fix-re "$1$3"))
|
||||
(cond-> duri
|
||||
(string? duri)
|
||||
(str/replace webkit-datauri-fix-re "$1$3")))
|
||||
|
||||
(defn- file-reader
|
||||
[f]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue