File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
LavalinkServer/src/main/java/lavalink/server/io Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,15 @@ jobs:
1818 runs-on : ubuntu-latest
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v2
21+ uses : actions/checkout@v3
2222
2323 - name : Download Artifacts
24- uses : actions/download-artifact@v2
24+ uses : actions/download-artifact@v3
2525 with :
2626 name : Lavalink.jar
2727
2828 - name : Upload Artifacts to GitHub Release
29- uses : softprops/action-gh- release@v1
29+ uses : ncipollo/ release-action @v1
3030 with :
31- files : Lavalink.jar
31+ artifacts : Lavalink.jar
32+ allowUpdates : true
Original file line number Diff line number Diff line change 33Each release usually includes various fixes and improvements.
44The most noteworthy of these, as well as any features and breaking changes, are listed here.
55
6+ ## 3.7.4
7+ * Fix an issue where Lavalink would not destroy a session when a client disconnects
8+
69## 3.7.3
710* Fix breaking change where ` /decodetrack ` would return a full track instead of the track info
811
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ class SocketServer(
147147 }
148148
149149 override fun afterConnectionClosed (session : WebSocketSession , status : CloseStatus ) {
150- val context = contextMap.remove(session.id ) ? : return
150+ val context = contextMap.remove(session.attributes[ " sessionId " ] ) ? : return
151151 if (context.resumeKey != null ) {
152152 resumableSessions.remove(context.resumeKey!! )?.let { removed ->
153153 log.warn(
You can’t perform that action at this time.
0 commit comments