fixed the thing where it does the thing its not supposed to do

This commit is contained in:
zoe 2022-09-03 01:01:30 +02:00
parent cda12adce4
commit 3cd7ed542d
1 changed files with 4 additions and 1 deletions

View File

@ -59,7 +59,10 @@ class _MakePostState extends State<MakePost> {
void addAt(String at) {
if (!at.contains("@")) {
at = "$at${widget.inReplyTo!.getReceiverInstance()} ";
at = "$at${widget.inReplyTo!.getReceiverInstance()}";
}
if (global.settings!.identities.keys.contains(at)) {
return;
}
replyAts = "$replyAts@$at ";
}