Small improvement

This commit is contained in:
M66B 2023-02-02 07:57:16 +01:00
parent 7eaf0bdd7a
commit efbf0883b7
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
DynamicDrawableSpan[] ddss = buffer.getSpans(off, off, DynamicDrawableSpan.class);
if (ddss.length > 0) {
int s = buffer.getSpanStart(ddss[0]);
properties.setValue("quotes", message.id, buffer.charAt(s) != 48);
properties.setValue("quotes", message.id, buffer.charAt(s) != '0');
bindBody(message, false);
return true;
}