Skip to content

Commit

Permalink
fix immich icon (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldietzler authored Mar 21, 2024
1 parent 73ccbaa commit b25388c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/commands/slashes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export class Commands {
])
.toHuman({ listStyle: 'long', maximumFractionDigits: 0 });

return interaction.reply(`Immich is ${age} old. <:immich:991481316950425643>`);
return interaction.reply(`Immich is ${age} old. ${Constants.Icons.Immich}`);
}

@Slash({ name: 'search', description: 'Search for PRs and Issues by title' })
Expand Down
1 change: 1 addition & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const docs = {
const icons = {
Checked: ':ballot_box_with_check:',
Unchecked: ':blue_square:',
Immich: '<:immich:1216750773598294066>',
};

const urls = {
Expand Down
3 changes: 1 addition & 2 deletions src/events/helpTicket/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ export const getHelpDeskWelcomeMessage = (user: string, isChecked: boolean[] = [

return `:wave: Hey <@${user}>,
Thanks for reaching out to us. Please follow the recommended actions below; this will help us be more effective in our support effort and leave more time for building Immich <:immich:991481316950425643>.
Thanks for reaching out to us. Please follow the recommended actions below; this will help us be more effective in our support effort and leave more time for building Immich ${Constants.Icons.Immich}.
## References
- __Container Logs:__ \`docker compose logs\` [docs](${Constants.Urls.Docs.Logs})
- __Container Status__: \`docker compose ps\` [docs](${Constants.Urls.Docs.Containers})
Expand Down

0 comments on commit b25388c

Please sign in to comment.