-
Notifications
You must be signed in to change notification settings - Fork 31
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
ReleaseList is expecting count
and offset
but is provided release-count
and release-offset
#52
Comments
I filed an issue for this a while ago: https://tickets.metabrainz.org/browse/MBS-9731 Fixed it in the develop branch, commit c0791e8. EDIT: should be working now, commit 5644849 |
Thanks for the quick reply @wo80. I have the same quick fix that addresses the Curious if you have a timeline for the next NuGet release that would include this fix? I can maintain my own fork and private nupkg, but if you are nearing a release I'd prefer to stay "official". Thanks! |
Would a prerelease package of the develop branch be okay? I'm still trying to figure out the best way, how to add |
If you have a prerelease version of the package I'm happy to use/test it and provide feedback. My usage is rather limited though. |
I have published the prerelease package 2.2.0-pre-1. The version is still 2.x since there are no breaking changes at the moment, but you should get deprecation warnings regarding the static API. Please let me know if there are any problems compiling your code. The plan is to be backward compatible until version 3 comes out. |
I swapped references from my private build to this and it worked straight away. Compiler warnings as expected, but no code changes required and worked as expected. Thanks for releasing this! |
The test
TestReleaseBrowseAsync()
in my fork demonstrates that there is a bug withReleaseList.Count
(and undemonstrated is an issue withOffset
).The URL https://musicbrainz.org/ws/2/release?artist=c3cceeed-3332-4cf0-8c4c-bbde425147b6&limit=40&offset=0&inc=&fmt=json will return this:
The code assumes it has
count
andoffset
(without therelease-
prefix).The text was updated successfully, but these errors were encountered: