mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 07:06:18 +02:00
Replace newlines in attendee email addresses
This commit is contained in:
@@ -3222,8 +3222,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
List<String> attendee = new ArrayList<>();
|
||||
for (Attendee a : event.getAttendees()) {
|
||||
String email = a.getEmail();
|
||||
if (!TextUtils.isEmpty(email))
|
||||
if (!TextUtils.isEmpty(email)) {
|
||||
email = email.replaceAll("\\r?\\n", "");
|
||||
attendee.add(email);
|
||||
}
|
||||
}
|
||||
|
||||
int status;
|
||||
|
||||
Reference in New Issue
Block a user