style: fix gci and golines lint errors in Signal channel

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Achton Smidt Winther 2026-02-28 11:52:31 +01:00
parent b3a19f474e
commit b5bd7985c6
No known key found for this signature in database
GPG key ID: B2C1917109213BD1
2 changed files with 14 additions and 8 deletions

View file

@ -611,7 +611,13 @@ func (c *SignalChannel) sendMessage(ctx context.Context, chatID, content string)
return err
}
func (c *SignalChannel) sendReaction(ctx context.Context, chatID, targetAuthor string, targetTimestamp int64, emoji string, remove bool) {
func (c *SignalChannel) sendReaction(
ctx context.Context,
chatID, targetAuthor string,
targetTimestamp int64,
emoji string,
remove bool,
) {
params := map[string]any{
"account": c.config.Account,
"emoji": emoji,