mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-08 09:18:39 +01:00
Prevent leading and trailing whitespace in group names.
This commit is contained in:
committed by
Greyson Parrelli
parent
9c54e39eae
commit
ab76112f5f
+1
-1
@@ -545,7 +545,7 @@ public final class GroupsV2Operations {
|
||||
}
|
||||
|
||||
private String decryptTitle(ByteString cipherText) {
|
||||
return decryptBlob(cipherText).getTitle();
|
||||
return decryptBlob(cipherText).getTitle().trim();
|
||||
}
|
||||
|
||||
private int decryptDisappearingMessagesTimer(ByteString encryptedTimerMessage) {
|
||||
|
||||
Reference in New Issue
Block a user