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.
2 parents 2ce0dfb + 48f3e02 commit 338497cCopy full SHA for 338497c
CHANGELOG.md
@@ -3,6 +3,9 @@
3
Each release usually includes various fixes and improvements.
4
The most noteworthy of these, as well as any features and breaking changes, are listed here.
5
6
+## 3.7.2
7
+* Fix breaking change where frameStats would be null instead of omitted
8
+
9
## 3.7.1
10
* Revert of application.yml autocreate as it can cause issues with differently named configs
11
protocol/src/main/java/dev/arbjerg/lavalink/protocol/v3/stats.kt
@@ -1,6 +1,9 @@
1
package dev.arbjerg.lavalink.protocol.v3
2
+import com.fasterxml.jackson.annotation.JsonInclude
data class Stats(
+ @JsonInclude(JsonInclude.Include.NON_NULL)
val frameStats: FrameStats?,
val players: Int,
val playingPlayers: Int,
0 commit comments