IO.isRemote(this.image) fails with the domain that looks like this "centerparcs.local-like.st" your code matches any number of words returning above mentioned domain as "centerparcs.local" (and shouldn't)
Pleas make a fix on regex:
FROM: IO.domainRegex = /(?:(?:http|https):\/\/)((?:w+).(?:(?:\w|.)+))/;
TO: IO.domainRgex = /(?:(?:http|https):\/\/)((?:[^/]+).(?:(?:\w|.)+))/;
IO.isRemote(this.image) fails with the domain that looks like this "centerparcs.local-like.st" your code matches any number of words returning above mentioned domain as "centerparcs.local" (and shouldn't)
Pleas make a fix on regex: FROM: IO.domainRegex = /(?:(?:http|https):\/\/)((?:w+).(?:(?:\w|.)+))/; TO: IO.domainRgex = /(?:(?:http|https):\/\/)((?:[^/]+).(?:(?:\w|.)+))/;
Greetings :)