We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a35429 commit cb986a7Copy full SHA for cb986a7
2 files changed
gradle/libs.versions.toml
@@ -1,7 +1,7 @@
1
[versions]
2
lavalink-api = "4.0.0"
3
lavalink-server = "4.0.0"
4
-lavalyrics = "0932f77"
+lavalyrics = "01bf4e7"
5
lavaplayer = "2.1.0"
6
7
[libraries]
lavalyrics/src/main/java/me/duncte123/lyrics/lavalink/JavaAudioLyricsManager.java
@@ -88,12 +88,14 @@ private Lyrics attemptGeniusLoad(AudioTrack track) {
88
.map((it) -> {
89
if (it instanceof TextLyrics tl) {
90
return new BasicAudioLyrics(
91
+ tl.source(),
92
tl.source(),
93
tl.text(),
94
List.of()
95
);
96
} else if (it instanceof TimedLyrics tl) {
97
98
99
100
null,
101
tl.lines()
0 commit comments