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
When a server contains the "-" symbol, the parse_server_string() method in lycheeupload.py returns false and prevent the upload to perform.
Adding \- in the regular expression seems to solve this: (.+)@([\w\d\.\-]+):(.+)
instead of (.+)@([\w\d\.]+):(.+)
The text was updated successfully, but these errors were encountered:
When a server contains the "-" symbol, the
parse_server_string()
method in lycheeupload.py returnsfalse
and prevent the upload to perform.Adding
\-
in the regular expression seems to solve this:(.+)@([\w\d\.\-]+):(.+)
instead of
(.+)@([\w\d\.]+):(.+)
The text was updated successfully, but these errors were encountered: