summaryrefslogtreecommitdiff
path: root/internal/media/manager.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/media/manager.go')
-rw-r--r--internal/media/manager.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/media/manager.go b/internal/media/manager.go
index 61f4e73dd..73494881c 100644
--- a/internal/media/manager.go
+++ b/internal/media/manager.go
@@ -432,8 +432,8 @@ func (m *Manager) ProcessEmoji(
return nil, err
}
- // Attempt to add this emoji processing item to the worker queue.
- _ = m.state.Workers.Media.MustEnqueueCtx(ctx, emoji.Process)
+ // Attempt to add emoji item to the worker queue.
+ m.state.Workers.Media.Queue.Push(emoji.Process)
return emoji, nil
}