Skip to content

Commit

Permalink
fix: json to object error
Browse files Browse the repository at this point in the history
  • Loading branch information
muedsa committed Nov 9, 2023
1 parent 08b2428 commit 3ed35a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ interface AgeVipPlayerApiService {
data class PlayUrlResp(
@SerialName("code") val code: Int = -200,
@SerialName("msg") val msg: String = "",
@SerialName("success") val success: Int = 0,
// @SerialName("success") val success: Int = 0, // 暂时注释 接口有时返回Int有时返回String
@SerialName("player") val player: String = "",
@SerialName("type") val type: String = "",
@SerialName("url") val url: String = "",
Expand Down

0 comments on commit 3ed35a1

Please sign in to comment.