You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
The server returned "content-disposition"=>"inline; filename=blabla.jpg"
filename must be quoted so the header is invalid
regexp match(/filename="([^"]*)"/) finds nothing here so match(...)[1] fails
I think that it's good to just ignore it instead of trying to parse it anyway
The text was updated successfully, but these errors were encountered:
Tried to upload file by URL
The server returned
"content-disposition"=>"inline; filename=blabla.jpg"
filename must be quoted so the header is invalid
regexp
match(/filename="([^"]*)"/)
finds nothing here somatch(...)[1]
failsI think that it's good to just ignore it instead of trying to parse it anyway
The text was updated successfully, but these errors were encountered: