diff --git a/README.md b/README.md new file mode 100644 index 0000000..a9d3e44 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# cchat-discord + +cchat driver for Discord. + +##### Disclaimer + +The discord_logo.png file in the repository belongs to Discord. I do not own it. diff --git a/discord_logo.png b/discord_logo.png new file mode 100644 index 0000000..9bba8d5 Binary files /dev/null and b/discord_logo.png differ diff --git a/service.go b/service.go index 01a21ea..6952956 100644 --- a/service.go +++ b/service.go @@ -32,7 +32,8 @@ func (Service) Name() text.Rich { } func (Service) Icon(ctx context.Context, iconer cchat.IconContainer) (func(), error) { - iconer.SetIcon("https://discord.com/assets/2c21aeda16de354ba5334551a883b481.png") + iconer.SetIcon("https://raw.githubusercontent.com/" + + "diamondburned/cchat-discord/himearikawa/discord_logo.png") return func() {}, nil }