bmachek/lrc-immich-plugin

Url Sanitation only allows letters/digits and dots

Closed this issue · 3 comments

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.

Yeah, you're right. Will fix this is the next release.
If you want, you can do a pull request too. :-)

I'm not sure my knowledge of lua or lack there of is good enough for that :)

Ok, no problem. Will fix this in the next release :-)