Url Sanitation only allows letters/digits and dots
Closed this issue · 3 comments
SgtZapper commented
Changed in ImmichAPI.lua row 51
local sanitizedURL = string.match(url, "^https?://[%w%.]+[:%d]*")
to
local sanitizedURL = string.match(url, "^https?://[%w%-.]+[:%d]*")
to be able to add my server.
URLs might be able to have other chars to.
bmachek commented
Yeah, you're right. Will fix this is the next release.
If you want, you can do a pull request too. :-)
SgtZapper commented
I'm not sure my knowledge of lua or lack there of is good enough for that :)
bmachek commented
Ok, no problem. Will fix this in the next release :-)