LMS-Community / plugin-Qobuz

Squeebox plugin to stream from qobuz.com
31 stars 16 forks source link

Replace the BASE_URL constant to use the correct Qobuz API endpoint #7

Closed loris closed 11 years ago

loris commented 11 years ago

player.qobuz.com/api.json was dedicated for our web player to avoid ajax cross-domain security limitations and has been deprecated, www.qobuz.com/api.json should be used instead

mherger commented 11 years ago

Loris - thanks for the heads up. Should be an easy enough change.

Unfortunately the diffs are full of white space changes. There should only be a single line change though, correct? Could you try to let git ignore white space changes or tell me the exact change? I'd be happy to incorporate it manually if needed.

loris commented 11 years ago

Oh sorry, didn't look at the pull request diff! Yes you should incorporate it manually, the change is a single line: -use constant BASE_URL => 'http://player.qobuz.com/api.json/0.2/'; +use constant BASE_URL => 'http://www.qobuz.com/api.json/0.2/';