-
Bug
-
Resolution: Unresolved
-
Normal
-
None
-
None
-
None
-
None
Howdy!
I don't know if I should include everythjng from the thread that lead me to create this ticket:
https://community.metabrainz.org/t/is-a-missing-release-status-a-data-error/694045
Basically I am writing a toll to create NFO files for Kodi's music videos library. I decided it was best to capture both the single and the album. When rewriting my code I came across a problem with Lionel Richie's "Dancing on the Ceiling" where the single has no date yet the actual MusicBrainz page does.
returns in part:
```
{ "id": "c8c017c8-85ff-4bd5-b67a-5bc2eedb0c11", "score": 67, "title": "Dancin' on the Ceiling", "length": 262000, "video": null, "artist-credit": [...], "first-release-date": "1986", "releases": [ \{...},
{
"id": "3cb2f7af-1aa8-40fd-98a6-c09ea07256ba",
"count": 1,
"title": "Dancing on the Ceiling",
"artist-credit": [
{
"name": "Lionel Richie",
"artist":
}
],
"release-group":
,
"track-count": 2,
"media": [
{
"position": 1,
"format": "7\" Vinyl",
"track": [
],
"track-count": 2,
"track-offset": 0
}
]
},
{
"id": "a8d62085-4c40-4b34-8f08-63f644e79d0d",
"status-id": "4e304316-386d-3409-af2e-78857eec5cfe",
"count": 1,
"title": "Back to Front",
"status": "Official",
"artist-credit": [
{
"name": "Lionel Richie",
"artist":
}
],
"release-group":
,
"date": "1992",
"country": "AU",
"release-events": [
{
"date": "1992",
"area":
}
],
"track-count": 16,
"media": [
{
"position": 1,
"format": "CD",
"track": [
],
"track-count": 16,
"track-offset": 8
}
]
},
{}
]
}
```
The associated `release-group` shows a date:
https://musicbrainz.org/release-group/3d79a50c-c480-4dff-8625-ce7164946e8b
A call to the `release-group`
`https://musicbrainz.org/ws/2/release-group/3d79a50c-c480-4dff-8625-ce7164946e8b?fmt=json`
returns:
```
{ "title": "Dancing on the Ceiling", "secondary-type-ids": [], "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "first-release-date": "1986", "primary-type": "Single", "disambiguation": "", "secondary-types": [], "id": "3d79a50c-c480-4dff-8625-ce7164946e8b" }```
A call to the `release`
`https://musicbrainz.org/ws/2/release/3cb2f7af-1aa8-40fd-98a6-c09ea07256ba?fmt=json`
returns:
```
{
"country": null,
"cover-art-archive":
,
"text-representation":
,
"status": null,
"release-events": [
],
"barcode": null,
"status-id": null,
"id": "3cb2f7af-1aa8-40fd-98a6-c09ea07256ba",
"quality": "normal",
"asin": null,
"disambiguation": "",
"title": "Dancing on the Ceiling",
"packaging": "Cardboard/Paper Sleeve",
"packaging-id": "f7101ce3-0384-39ce-9fde-fbbd0044d35f",
"date": "1986"
}
```
So the data is there just not coming in the `recording` call. I have tested plenty of others and none have been missing this date on the ones I've checked.
Thanks!
Chris