We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa5d21c commit 198630bCopy full SHA for 198630b
src/utils/DataManager.ts
@@ -120,8 +120,8 @@ export default class DataManager {
120
return type ?? "Unknown"
121
122
const found = this.emojis[type as BotEmoji]
123
- if (!found && includeName == undefined) return type
124
if (!found && includeName == false) return ""
+ if (!found) return type
125
if (includeName) return `${found} ${type}`
126
return found
127
}
0 commit comments