-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracklist is not displayed #33
Comments
function fetchData(location, fn) {
request({
"uri": "/player/details",
"baseUrl": location.protocol + "//" + location.hostname,
"qs": { "key": location.pathname },
"json": true
}, function (error, response, data) {
if (!error && response.statusCode === 200 &&
data.cloudcast.sections.length > 0) {
fn(insertTrackNumber(data));
} else {
console.error(error);
}
});
}
Now request returns response.statusCode = 200 everytime.
…On Thu, Aug 10, 2017 at 10:30 AM, Florescu George Cătălin < ***@***.***> wrote:
Tracklist is no more displayed, but in player song appears. Does API
changed?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#33>, or mute the
thread
<https://github.com/notifications/unsubscribe-auth/AF1DupXZyqiw9ivVjQGXpqyI-twm0QWYks5sWrGNgaJpZM4OzDAt>
.
|
@zygisber I'm not familiar with JS, can you explain what to do? |
Duplicate of #32 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tracklist is no more displayed, but in player song appears. Does API changed?
The text was updated successfully, but these errors were encountered: