-
Notifications
You must be signed in to change notification settings - Fork 18
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
Multi-scrobbler only submits the last 20 cached scrobbles to Maloja using Last.fm as a source #153
Comments
Hello This is by design. multi-scrobbler is not an application for importing your historical scrobbles from LastFM. If you'd like to import all of your scrobbles from LastFM please follow the directions in the Maloja documentation under How To Use -> Data. multi-scrobbler is designed to be run continuously so it can monitor scrobbles in real time. The 20 scrobble value is in place to help "fill in the gaps" in the event it crashes or is stopped for some reason -- the cache is used to get any missed scrobbles during that down time. If this use case, getting that last 20 scrobbles, is not adequate for you please describe where it is failing and I may be able to address it. Additionally, since you are running MS natively, you can adjust this value yourself to get more "cached" scrobbles, if you would like:
|
Thank you. The reason I want to increase the number of cached scrobbles is that I don't keep the server on at all times, and I like to have it mirrored with Last.fm. This way, scrobbles can be submitted to Maloja after I listen to music on my phone. |
Then increasing the limits I mentioned should accomplish your goal. Be aware that Last.FM will return a maximum of 200 scrobbles so that's as high as the limit in |
…153 * Increase default backlog limits to maximum pagination supported by each source * Add scrobbleBacklogCount config property so user can explicitly set # of tracks to backlog
* Refresh recent scrobbles with a higher limit after initialization (maximum supported by api call) * Implement controlling count in client config
@maluvola please try pulling the
ex lastfm.json [
{
"name": "mylfm",
"enable": true,
"configureAs": "source",
"data": {
},
"options": {
"scrobbleBacklogCount": 100
}
}
] ex maloja.json [
{
"name": "default",
"enable": true,
"data": {
},
"options": {
"refreshInitialCount": 20,
}
}
] I believe this should address your issue? |
Yes, it should. Does your previous answer work as well? I made the changes but haven't listened to more than a dozen tracks yet. |
Yes my previous answer will still work. The new solution in |
Released in v0.8.0 |
The text was updated successfully, but these errors were encountered: