mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-13 07:45:10 +00:00
fix for object link nullification
This commit is contained in:
parent
4daa1ff5a1
commit
3b24a4270e
@ -180,7 +180,12 @@ namespace realm {
|
||||
|
||||
size_t column = property.table_column;
|
||||
if (property.is_nullable && Accessor::is_null(ctx, value)) {
|
||||
if (property.type == PropertyTypeObject) {
|
||||
m_row.nullify_link(column);
|
||||
}
|
||||
else {
|
||||
m_row.set_null(column);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user