mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 01:36:53 +08:00
Ensure the correct relationship values are returned
This commit is contained in:
parent
acfa49b027
commit
d3534fcda8
|
@ -225,7 +225,9 @@ export default class Model {
|
|||
if (this.data.relationships) {
|
||||
const relationship = this.data.relationships[name];
|
||||
|
||||
return relationship && app.store.getById(relationship.data.type, relationship.data.id);
|
||||
if (relationship) {
|
||||
return app.store.getById(relationship.data.type, relationship.data.id);
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
|
@ -247,7 +249,9 @@ export default class Model {
|
|||
if (this.data.relationships) {
|
||||
const relationship = this.data.relationships[name];
|
||||
|
||||
return relationship && relationship.data.map(data => app.store.getById(data.type, data.id));
|
||||
if (relationship) {
|
||||
return relationship.data.map(data => app.store.getById(data.type, data.id));
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue
Block a user