mirror of
https://github.com/dalbodeule/chibot-chzzk-bot.git
synced 2025-06-09 07:18:22 +00:00
some fix on WSSongListRoutes
- add delUrl to SongResponse
This commit is contained in:
parent
22bbd05aff
commit
9f4f8e84aa
@ -219,7 +219,8 @@ fun Routing.wsSongListRoutes() {
|
|||||||
it.uid,
|
it.uid,
|
||||||
it.reqUid,
|
it.reqUid,
|
||||||
it.current?.toSerializable(),
|
it.current?.toSerializable(),
|
||||||
it.next?.toSerializable()
|
it.next?.toSerializable(),
|
||||||
|
it.delUrl
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -125,7 +125,8 @@ fun Routing.wsSongRoutes() {
|
|||||||
it.uid,
|
it.uid,
|
||||||
it.reqUid,
|
it.reqUid,
|
||||||
it.current?.toSerializable(),
|
it.current?.toSerializable(),
|
||||||
it.next?.toSerializable()
|
it.next?.toSerializable(),
|
||||||
|
it.delUrl
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -137,7 +138,7 @@ fun Routing.wsSongRoutes() {
|
|||||||
it.uid,
|
it.uid,
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
null
|
null,
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -161,4 +162,5 @@ data class SongResponse(
|
|||||||
val reqUid: String?,
|
val reqUid: String?,
|
||||||
val current: SerializableYoutubeVideo? = null,
|
val current: SerializableYoutubeVideo? = null,
|
||||||
val next: SerializableYoutubeVideo? = null,
|
val next: SerializableYoutubeVideo? = null,
|
||||||
|
val delUrl: String? = null
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user