It's definitly an Api change. The difference between the two methods is that the 'stream redirect' that soundcloud returns uses *https *and the 'download redirect' uses *http*.
I 'fixed' it by adding one line to the ProtocolHandler.pm file. > my $redirector = $res->header( 'location' ); > > $redirector =~ s/https/http/; The first line is line 143. I added the second line. I don't know if this is a permanent/good solution. ------------------------------------------------------------------------ nldroid's Profile: http://forums.slimdevices.com/member.php?userid=63207 View this thread: http://forums.slimdevices.com/showthread.php?t=92723 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/plugins
