fix: Skip nulls in client.get
This makes it consistent with `load.getdoc`
This commit is contained in:
parent
c9cb986b5b
commit
9e687317a7
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ def get(
|
|||
doc.check_permission()
|
||||
doc.apply_fieldlevel_read_permissions()
|
||||
|
||||
return doc.as_dict()
|
||||
return doc.as_dict(no_nulls=True)
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue