From 5b586bef3109e4e4b20fac9c39270f93e2013276 Mon Sep 17 00:00:00 2001 From: devoxin Date: Wed, 8 May 2024 01:07:31 +0100 Subject: [PATCH] Remove useless comment --- README.md | 2 +- .../java/dev/lavalink/youtube/YoutubeAudioSourceManager.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index d8723ae..fadea15 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ Configuring the plugin: plugins: youtube: enabled: true # Whether this source can be used. - allowSearch: true # Whether "ytsearch:" and "ytmsearch:" can be used + allowSearch: true # Whether "ytsearch:" and "ytmsearch:" can be used. allowDirectVideoIds: true # Whether just video IDs can match. If false, only complete URLs will be loaded. allowDirectPlaylistIds: true # Whether just playlist IDs can match. If false, only complete URLs will be loaded. # The clients to use for track loading. See below for a list of valid clients. diff --git a/common/src/main/java/dev/lavalink/youtube/YoutubeAudioSourceManager.java b/common/src/main/java/dev/lavalink/youtube/YoutubeAudioSourceManager.java index 888a5fb..ee9e2c8 100644 --- a/common/src/main/java/dev/lavalink/youtube/YoutubeAudioSourceManager.java +++ b/common/src/main/java/dev/lavalink/youtube/YoutubeAudioSourceManager.java @@ -74,7 +74,6 @@ public YoutubeAudioSourceManager() { } public YoutubeAudioSourceManager(boolean allowSearch) { - // query order: music -> web -> android -> tvhtml5embedded this(allowSearch, true, true); }