Skip to content

Commit 1dbdbf7

Browse files
committed
Fix tag raw
1 parent c669233 commit 1dbdbf7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/Tags/raw.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default class TagRaw extends Command {
5454
await message.guild.tags.init();
5555
}
5656
const manager = message.guild.tags;
57-
const cachedTag = await manager.getTag(tag);
57+
const cachedTag = await manager.getTag(tag, true, true);
5858
if (!cachedTag) return await message.error("TAG_INVALID_TAG", { tag });
5959
return await message.channel.send({
6060
content: await this.client.util.haste(

0 commit comments

Comments
 (0)