np :smile: Also, `body?.toString() ?: "null"` is r...
# announcements
r
np 😄 Also,
body?.toString() ?: "null"
is redundant, as
toString
is defined on
Any?
and will automatically return "null" if the Object is null, iirc 😉