8.3.1 (2020-05-02)
Bug Fixes
- kitsu-core: prevent undefined id for empty relationship data objects: (ee381a9)
relationships: {
author: {
data: {}
}
}
Becomes:
author: {}
Instead of:
author: {
id: undefined,
type: undefined
}
relationships: {
author: {
data: {}
}
}
Becomes:
author: {}
Instead of:
author: {
id: undefined,
type: undefined
}