diff options
author | Keuin <[email protected]> | 2023-07-14 22:25:27 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2023-07-14 22:25:27 +0800 |
commit | 2ace07d2d88c01a56b4d0f3194bd74a518a769c8 (patch) | |
tree | b218043dacec97c08469855950838ceca67496c6 /bilibili/danmaku_server_info.go | |
parent | d7bd3edf61109936a09a5115938e86b1c17ea024 (diff) |
Refactor: use pointer type of `Bilibili` to prevent unexpected copy.
Diffstat (limited to 'bilibili/danmaku_server_info.go')
-rw-r--r-- | bilibili/danmaku_server_info.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bilibili/danmaku_server_info.go b/bilibili/danmaku_server_info.go index e3cfbc0..4d26873 100644 --- a/bilibili/danmaku_server_info.go +++ b/bilibili/danmaku_server_info.go @@ -5,7 +5,7 @@ import ( "github.com/keuin/slbr/types" ) -func (b Bilibili) GetDanmakuServerInfo(roomId types.RoomId) (resp types.DanmakuServerInfoResponse, err error) { +func (b *Bilibili) GetDanmakuServerInfo(roomId types.RoomId) (resp types.DanmakuServerInfoResponse, err error) { url := fmt.Sprintf("https://api.live.bilibili.com/xlive/web-room/v1/index/getDanmuInfo?id=%d&type=0", roomId) return callGet[types.DanmakuServerInfoResponse](b, url) } |