Skip to content

Commit

Permalink
[WIP] Core now adds a ~ by itself
Browse files Browse the repository at this point in the history
Companion for
deltachat/deltachat-core-rust#6411. This PR is not
meant to change user-visible behavior, we just shifted the
responsibility to add the "~" to core. (without this PR, the name would
be "~~Alice" sometimes)
  • Loading branch information
Hocuri committed Jan 6, 2025
1 parent dc785fc commit 425271c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/b44t/messenger/DcMsg.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public JSONObject getWebxdcInfo () {
public String getSenderName(DcContact dcContact) {
String overrideName = getOverrideSenderName();
if (overrideName != null) {
return "~" + overrideName;
return overrideName;
} else {
return dcContact.getDisplayName();
}
Expand Down

0 comments on commit 425271c

Please sign in to comment.