mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-25 17:50:59 +00:00
Add account name when replying
This commit is contained in:
parent
281a7afd7c
commit
7eef46b60a
1 changed files with 4 additions and 0 deletions
|
@ -64,6 +64,10 @@ public final class NewStatusViewModel: ObservableObject {
|
||||||
compositionViewModel = CompositionViewModel(eventsSubject: compositionEventsSubject)
|
compositionViewModel = CompositionViewModel(eventsSubject: compositionEventsSubject)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let inReplyTo = inReplyTo {
|
||||||
|
compositionViewModel.text = inReplyTo.accountName.appending(" ")
|
||||||
|
}
|
||||||
|
|
||||||
compositionViewModels = [compositionViewModel]
|
compositionViewModels = [compositionViewModel]
|
||||||
|
|
||||||
allIdentitiesService.authenticatedIdentitiesPublisher()
|
allIdentitiesService.authenticatedIdentitiesPublisher()
|
||||||
|
|
Loading…
Reference in a new issue