mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-01-25 23:38:06 +00:00
Fix for 'space added before first line of self-reply' (#546)
This commit is contained in:
parent
fee9cd3daa
commit
1c61d3908f
1 changed files with 3 additions and 1 deletions
|
@ -200,7 +200,9 @@ public class StatusEditorViewModel: ObservableObject {
|
||||||
}
|
}
|
||||||
mentionString += "@\(mention.acct)"
|
mentionString += "@\(mention.acct)"
|
||||||
}
|
}
|
||||||
mentionString += " "
|
if !mentionString.isEmpty {
|
||||||
|
mentionString += " "
|
||||||
|
}
|
||||||
replyToStatus = status
|
replyToStatus = status
|
||||||
visibility = status.visibility
|
visibility = status.visibility
|
||||||
statusText = .init(string: mentionString)
|
statusText = .init(string: mentionString)
|
||||||
|
|
Loading…
Reference in a new issue