From b405228996077b9df301dc6b4aacd09cb55bc746 Mon Sep 17 00:00:00 2001 From: amy Date: Thu, 13 Mar 2025 16:12:09 +0330 Subject: [PATCH] add kyzaify to songinfo --- src/commands/songinfo.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/songinfo.ts b/src/commands/songinfo.ts index de62c95..35aa5a2 100644 --- a/src/commands/songinfo.ts +++ b/src/commands/songinfo.ts @@ -7,7 +7,7 @@ import { SlashCommandBuilder } from "discord.js"; import { Config } from "../config.ts"; -import {getSongOnPreferredProvider} from "../helper.ts"; +import {getSongOnPreferredProvider, kyzaify} from "../helper.ts"; export default class MusicInfoCommand extends Command { async run(interaction: ChatInputCommandInteraction, config: Config) { @@ -30,7 +30,7 @@ export default class MusicInfoCommand extends Command { currentRow.addComponents( new ButtonBuilder() .setURL(info.linksByPlatform[meowi].url) - .setLabel(meowi) + .setLabel(kyzaify(meowi)) .setStyle(ButtonStyle.Link) ); }