You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
In most messages, on new/1 functions, there're guards for binary fields. Those should be removed, as sometimes such fields come as NULLs, not empty strings.
Solution
In all messages' new/1 functions:
remove guards for binary fields
add field_value || "" to default to empty string.
The text was updated successfully, but these errors were encountered:
Problem
In most messages, on
new/1
functions, there're guards for binary fields. Those should be removed, as sometimes such fields come as NULLs, not empty strings.Solution
In all messages'
new/1
functions:field_value || ""
to default to empty string.The text was updated successfully, but these errors were encountered: