diff options
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) } |