We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58a633f commit 9d015e5Copy full SHA for 9d015e5
common/src/main/java/dev/lavalink/youtube/YoutubeSource.java
@@ -7,7 +7,7 @@ public class YoutubeSource {
7
public static String VERSION = "Unknown";
8
9
static {
10
- try (InputStream versionStream = YoutubeSource.class.getResourceAsStream("/version.txt")) {
+ try (InputStream versionStream = YoutubeSource.class.getResourceAsStream("/yts-version.txt")) {
11
if (versionStream != null) {
12
byte[] content = new byte[versionStream.available()];
13
versionStream.read(content);
common/src/main/resources/version.txt renamed to common/src/main/resources/yts-version.txt
0 commit comments