HERE in m/{{ <-- HERE 90:2b:34:31:73:ab}}/ at

I think there are two potential issues:

- Curly brackets are reserved characters in a regex. They need to be escaped
- The regex in the code is using a variable "{{$cid}}". If that variable's value is using a reserved character, you could face issues. It should be "qouted" using \Q$cid\E. This would tell Perl to match the value literally.

Try to replace "{{$cid}}" with "\{\{\Q$cid\E\}\}".

--

Michael
_______________________________________________
Squeezecenter mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/squeezecenter

Reply via email to