Skip to content

Commit

Permalink
release: fix_A029a
Browse files Browse the repository at this point in the history
  • Loading branch information
cnxysoft committed Sep 26, 2024
1 parent 76e2358 commit b8858a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions UPDATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## DDBOT最近更新日志
- 2024-09-26 0.2.9a(Wsa)
- 修复陌生人信息解析失败

- 2024-09-22 0.2.9(WSa)
- 支持被点赞事件解析
- 重构解析代码
Expand Down
4 changes: 2 additions & 2 deletions lsp/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

var (
CommitId = "UNKNOWN"
BuildTime = "2024-09-22 18:05:00"
Tags = "fix_A029"
BuildTime = "2024-09-26 22:02:00"
Tags = "fix_A029a"
)

func CheckUpdate() string {
Expand Down
4 changes: 2 additions & 2 deletions miraigo/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,9 @@ type ResponseGetStrangerInfo struct {

type StrangerInfo struct {
UID string `json:"uid"`
Uin string `json:"user_id"`
QID string `json:"qid"`
Uin int64 `json:"user_id"`
Nick string `json:"nickname"`
Qid string `json:"qid"`
Remark string `json:"remark"`
LongNick string `json:"long_nick"`
Sex string `json:"sex"`
Expand Down

0 comments on commit b8858a2

Please sign in to comment.