From 1115a47c5dd5a8e56a666cfc6e39fbdb4f60b609 Mon Sep 17 00:00:00 2001 From: Adam Snyder Date: Thu, 9 Mar 2023 15:31:46 -0800 Subject: [PATCH] fix: ThreadMember flags not serialized (#1335) --- structs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structs.go b/structs.go index 64e077f..2dad321 100644 --- a/structs.go +++ b/structs.go @@ -527,7 +527,7 @@ type ThreadMember struct { // The time the current user last joined the thread JoinTimestamp time.Time `json:"join_timestamp"` // Any user-thread settings, currently only used for notifications - Flags int + Flags int `json:"flags"` } // ThreadsList represents a list of threads alongisde with thread member objects for the current user.