Here's the problem: A C-style comment and maybe a missing semicolon. If
I replace

Code:
--------------------
        # Load the handler when requested..
        my $handler = $class->loadURLHandler($url)
            // $class->loadHandler($protocol);
  
--------------------

with

Code:
--------------------
        # Load the handler when requested..
        my $handler = $class->loadURLHandler($url);
            # $class->loadHandler($protocol);
  
--------------------

it runs further (testing to see how it works).


------------------------------------------------------------------------
mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=113274

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

Reply via email to