Skip to content

Commit

Permalink
Update android/src/main/java/com/expensify/livemarkdown/MarkdownTextW…
Browse files Browse the repository at this point in the history
…atcher.java

Co-authored-by: Tomek Zawadzki <[email protected]>
  • Loading branch information
wildan-m and tomekzaw authored Sep 11, 2024
1 parent f160781 commit 1864419
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void afterTextChanged(Editable editable) {
if (editable instanceof SpannableStringBuilder) {
String currentText = editable.toString();
if (currentText.equals(mPreviousText)) {
return;
return;
}
mMarkdownUtils.applyMarkdownFormatting((SpannableStringBuilder) editable);
mPreviousText = currentText;
Expand Down

0 comments on commit 1864419

Please sign in to comment.