Pull 2nd lot of develop changes into 0.9.0 #439

Merged
Vylpes merged 30 commits from develop into release/0.9.0 2025-05-18 11:05:56 +01:00
Showing only changes of commit c3e328d538 - Show all commits

View file

@ -60,13 +60,18 @@ export default class Series extends Command {
return;
}
const embed = await SeriesHelper.GenerateSeriesViewPage(series.id, 0, interaction.user.id);
try {
const embed = await SeriesHelper.GenerateSeriesViewPage(series.id, 0, interaction.user.id);
await interaction.followUp({
embeds: [ embed!.embed ],
components: [ embed!.row ],
files: [ embed!.image ],
});
await interaction.followUp({
embeds: [ embed!.embed ],
components: [ embed!.row ],
files: [ embed!.image ],
});
} catch (e) {
await interaction.followUp("An error has occured generating the series grid.");
AppLogger.CatchError("Series", e);
}
}
private async ListSeries(interaction: CommandInteraction) {