Skip to content

Commit

Permalink
fix: wrong official chat name processing
Browse files Browse the repository at this point in the history
Signed-off-by: Next Alone <[email protected]>
  • Loading branch information
NextAlone committed Nov 2, 2024
1 parent ce98a45 commit 336163d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1466,10 +1466,10 @@ private String getStringInternal(String key, String fallback, int fallbackRes, i
// value = value.replace("Telegram", "Nnngram");
if (value.contains("TELEOFFICIAL"))
value = value.replace("TELEOFFICIAL", "Telegram");
if (value.contains("Nullgram"))
value = value.replace("Nullgram", "Nnngram");
if (value.contains("NullgramClient"))
value = value.replace("NullgramClient", "nagram_client");
if (value.contains("Nullgram"))
value = value.replace("Nullgram", "Nnngram");
return value;
}

Expand Down

0 comments on commit 336163d

Please sign in to comment.