Shamrock: fix friend request type typo

This commit is contained in:
ikechan8370 2023-12-08 12:54:34 +08:00 committed by GitHub
parent bd45523e25
commit 27791cc848
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ internal enum class NoticeType {
@Serializable @Serializable
internal enum class RequestType { internal enum class RequestType {
@SerialName("friend ") Friend, @SerialName("friend") Friend,
@SerialName("group") Group, @SerialName("group") Group,
} }
@ -143,4 +143,4 @@ internal data class SignDetail (
val action: String? = "今日第1个打卡", val action: String? = "今日第1个打卡",
@SerialName("rank_img") @SerialName("rank_img")
val rankImg: String? = "", val rankImg: String? = "",
) )