Skip to content

Commit

Permalink
Merge pull request #76 from dwarvesf/fix/missing-emoji-id
Browse files Browse the repository at this point in the history
fix: missing emoji id
  • Loading branch information
baenv authored Aug 6, 2024
2 parents 4fdbdd2 + 750350d commit e2c88e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/discord/view/news/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

// Render renders news message to Discord, using for any platform.
func (v view) Render(original *model.DiscordMessage, platform, topic string, posts []model.News) error {
title := fmt.Sprintf(":pepe_ping: %s %s BUZZ!! :pepe_ping:", strings.ToUpper(platform), strings.ToUpper(topic))
title := fmt.Sprintf("<:pepe_ping:1028964391690965012> %s %s BUZZ!! <:pepe_ping:1028964391690965012>", strings.ToUpper(platform), strings.ToUpper(topic))

if len(posts) == 0 {
msg := &discordgo.MessageEmbed{
Expand Down

0 comments on commit e2c88e3

Please sign in to comment.