diff options
author | 2023-09-29 10:39:56 +0200 | |
---|---|---|
committer | 2023-09-29 10:39:56 +0200 | |
commit | 536d9e482d4ebc012855372b9fcfa4f022d1618a (patch) | |
tree | 36079fb403b9a9bb7d3a64ace582c6870bcce77b /internal/processing/status/status.go | |
parent | [bugfix] Move follow.show_reblogs check further up to avoid showing unwanted ... (diff) | |
download | gotosocial-536d9e482d4ebc012855372b9fcfa4f022d1618a.tar.xz |
[chore/bugfix] Deinterface text.Formatter, allow underscores in hashtags (#2233)
Diffstat (limited to 'internal/processing/status/status.go')
-rw-r--r-- | internal/processing/status/status.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/status/status.go b/internal/processing/status/status.go index bd8457eb8..432f945fc 100644 --- a/internal/processing/status/status.go +++ b/internal/processing/status/status.go @@ -31,7 +31,7 @@ type Processor struct { federator federation.Federator converter *typeutils.Converter filter *visibility.Filter - formatter text.Formatter + formatter *text.Formatter parseMention gtsmodel.ParseMentionFunc } |