Don't error out if there's no hash in extractRelationship for V3
This commit is contained in:
parent
69dd90b76b
commit
b8b1459cf5
|
@ -28,7 +28,7 @@ export default DS.JSONSerializer.extend({
|
|||
isNewSerializerAPI: true,
|
||||
|
||||
extractRelationship(type, hash) {
|
||||
if(!hash.id && hash['@href']) {
|
||||
if(hash && !hash.id && hash['@href']) {
|
||||
hash.id = hash['@href'];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user