Skip to content

Commit 338497c

Browse files
authored
Merge pull request #814 from freyacodes/dev
v3.7.2 release
2 parents 2ce0dfb + 48f3e02 commit 338497c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
Each release usually includes various fixes and improvements.
44
The most noteworthy of these, as well as any features and breaking changes, are listed here.
55

6+
## 3.7.2
7+
* Fix breaking change where frameStats would be null instead of omitted
8+
69
## 3.7.1
710
* Revert of application.yml autocreate as it can cause issues with differently named configs
811

protocol/src/main/java/dev/arbjerg/lavalink/protocol/v3/stats.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package dev.arbjerg.lavalink.protocol.v3
22

3+
import com.fasterxml.jackson.annotation.JsonInclude
4+
35
data class Stats(
6+
@JsonInclude(JsonInclude.Include.NON_NULL)
47
val frameStats: FrameStats?,
58
val players: Int,
69
val playingPlayers: Int,

0 commit comments

Comments
 (0)