Hi Guys,
I’am having an issue with Ember trying to resolve an empty relationship, while no ID is set but an empty string.
For example I have a User model with an relationship ‘state’ like the following:
//User
Name: DS.attr('string'),
State: DS.belongsTo('state')
When I retrieve an user object from the server with state is set to “”, ember tries to resolve the ‘state’ relationship by calling ‘/states’ from the server. When I set manually the ‘state’ to undefined Ember will not try to resolve…
Is this a bug?