> Good point regarding not needing to register, and i guess to answer my
> own question, is that if we continue to include the BBC iPlayer Plug-in
> it should work correctly. On this basis, we *-_will__-*investigate the
> bug that you have reported.
BBCServiceInformation.pm uses LWP::UserAgent - which is not async. Which
means that if there's a network issue hitting it, it will stall LMS. You
should use Slim::Networking::SimpleAsyncHTTP instead (which actually is
loaded in that same module).
> own question, is that if we continue to include the BBC iPlayer Plug-in
> it should work correctly. On this basis, we *-_will__-*investigate the
> bug that you have reported.
BBCServiceInformation.pm uses LWP::UserAgent - which is not async. Which
means that if there's a network issue hitting it, it will stall LMS. You
should use Slim::Networking::SimpleAsyncHTTP instead (which actually is
loaded in that same module).
Comment