Fix regex

This commit is contained in:
Justin Mazzocchi 2021-02-16 23:35:02 -08:00
parent 451be82b1b
commit e083dbc39b
No known key found for this signature in database
GPG Key ID: E223E6937AAFB01C
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ public extension NewStatusViewModel {
private extension NewStatusViewModel {
// swiftlint:disable:next force_try
static let mentionsRegularExpression = try! NSRegularExpression(pattern: #"@\w+"#)
static let mentionsRegularExpression = try! NSRegularExpression(pattern: #"@\S+"#)
func handle(event: CompositionViewModel.Event) {
switch event {