🚨 Fix warnings

This commit is contained in:
Manuel 2023-03-26 16:11:25 +02:00
parent 956b8f1338
commit 80f2b6e061
3 changed files with 1 additions and 3 deletions

View File

@ -39,7 +39,7 @@ export class DiscordMessageService {
}: {
title: string;
description?: string;
authorUrl?: string | undefined;
authorUrl?: string;
mixin?: (embedBuilder: EmbedBuilder) => EmbedBuilder;
}): APIEmbed {
let embedBuilder = new EmbedBuilder()

View File

@ -10,7 +10,6 @@ import { DiscordMessageService } from 'src/clients/discord/discord.message.servi
import { DiscordVoiceService } from 'src/clients/discord/discord.voice.service';
import { JellyfinSearchService } from 'src/clients/jellyfin/jellyfin.search.service';
import { SearchHint } from 'src/models/search/SearchHint';
import { Track } from 'src/models/shared/Track';
import { PlaybackService } from 'src/playback/playback.service';
import { RandomCommandParams } from './random.params';

View File

@ -5,7 +5,6 @@ import { Logger } from '@nestjs/common';
import { Injectable } from '@nestjs/common/decorators';
import { CommandInteraction } from 'discord.js';
import e from 'express';
import { DiscordMessageService } from 'src/clients/discord/discord.message.service';
import { DiscordVoiceService } from 'src/clients/discord/discord.voice.service';
import { PlaybackService } from 'src/playback/playback.service';