mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-12-20 20:01:17 +00:00
[core] Fix: StreamMarker contained wrong ID format
as of broken documentation Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
19038dbc6e
commit
710783aaf7
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ type (
|
||||||
|
|
||||||
// StreamMarkerInfo contains information about a marker on a stream
|
// StreamMarkerInfo contains information about a marker on a stream
|
||||||
StreamMarkerInfo struct {
|
StreamMarkerInfo struct {
|
||||||
ID int64 `json:"id"`
|
ID string `json:"id"`
|
||||||
CreatedAt time.Time `json:"created_at"`
|
CreatedAt time.Time `json:"created_at"`
|
||||||
Description string `json:"description"`
|
Description string `json:"description"`
|
||||||
PositionSeconds int64 `json:"position_seconds"`
|
PositionSeconds int64 `json:"position_seconds"`
|
||||||
|
|
Loading…
Reference in a new issue