Bump packages

This commit is contained in:
Max Isom 2020-10-24 12:32:43 -04:00
parent 4f0ab9b549
commit 599dbce6e6
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
15 changed files with 20134 additions and 6734 deletions

View file

@ -2,8 +2,7 @@ import {TextChannel, Message} from 'discord.js';
import {URL} from 'url';
import {TYPES} from '../types';
import {inject, injectable} from 'inversify';
import {QueuedSong} from '../services/player';
import {STATUS} from '../services/player';
import {QueuedSong, STATUS} from '../services/player';
import PlayerManager from '../managers/player';
import {getMostPopularVoiceChannel} from '../utils/channels';
import LoadingMessage from '../utils/loading-message';
@ -111,7 +110,7 @@ export default class implements Command {
newSongs.push(...convertedSongs);
}
} catch (_) {
} catch (_: unknown) {
// Not a URL, must search YouTube
const query = args.join(' ');