forked from Fascinated/Bat
disable spotify linking (until they accept out application)
This commit is contained in:
@ -38,22 +38,25 @@ public class LinkSubCommand extends BatSubCommand implements EventListener {
|
||||
|
||||
@Override
|
||||
public void execute(BatGuild guild, @NonNull BatUser user, @NonNull MessageChannel channel, Member member, @NonNull SlashCommandInteraction interaction) {
|
||||
SpotifyProfile profile = user.getProfile(SpotifyProfile.class);
|
||||
if (profile.hasLinkedAccount()) {
|
||||
interaction.replyEmbeds(EmbedUtils.errorEmbed()
|
||||
.setDescription("You have already linked your Spotify account!")
|
||||
.build())
|
||||
.setEphemeral(true)
|
||||
.queue();
|
||||
return;
|
||||
}
|
||||
|
||||
interaction.replyEmbeds(EmbedUtils.genericEmbed()
|
||||
.setDescription("You can link your Spotify account by clicking [here](%s)".formatted(spotifyService.getAuthorizationUrl()))
|
||||
.build())
|
||||
.addComponents(ActionRow.of(Button.primary("spotify_link", "Link Spotify")))
|
||||
.setEphemeral(true)
|
||||
.queue();
|
||||
.setDescription("We are currently awaiting Spotify's approval for our application. Please check back later.")
|
||||
.build()).queue();
|
||||
// SpotifyProfile profile = user.getProfile(SpotifyProfile.class);
|
||||
// if (profile.hasLinkedAccount()) {
|
||||
// interaction.replyEmbeds(EmbedUtils.errorEmbed()
|
||||
// .setDescription("You have already linked your Spotify account!")
|
||||
// .build())
|
||||
// .setEphemeral(true)
|
||||
// .queue();
|
||||
// return;
|
||||
// }
|
||||
//
|
||||
// interaction.replyEmbeds(EmbedUtils.genericEmbed()
|
||||
// .setDescription("You can link your Spotify account by clicking [here](%s)".formatted(spotifyService.getAuthorizationUrl()))
|
||||
// .build())
|
||||
// .addComponents(ActionRow.of(Button.primary("spotify_link", "Link Spotify")))
|
||||
// .setEphemeral(true)
|
||||
// .queue();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user