diff --git a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+MetaTextDelegate.swift b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+MetaTextDelegate.swift index 9f8330c8ef..4b7bf6f5f5 100644 --- a/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+MetaTextDelegate.swift +++ b/MastodonSDK/Sources/MastodonUI/Scene/ComposeContent/ComposeContentViewModel+MetaTextDelegate.swift @@ -32,8 +32,10 @@ extension ComposeContentViewModel: MetaTextDelegate { case .content: let textInput = textStorage.string - self.content = textInput - + Task { + self.content = textInput + } + let content = MastodonContent( content: textInput, emojis: [:] // customEmojiViewModel?.emojis.value.asDictionary ?? [:]