MM-32652 /threads?unread=true returns null threads and no counts if there are no unread threads (#16885)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
a3de71fba4
Коммит
830594004b
@@ -5429,6 +5429,14 @@ func TestGetThreadsForUser(t *testing.T) {
|
||||
|
||||
require.Equal(t, uss2.Threads[0].PostId, rootIdAfter)
|
||||
|
||||
uss3, resp3 := th.Client.GetUserThreads(th.BasicUser.Id, th.BasicTeam.Id, model.GetUserThreadsOpts{
|
||||
Deleted: false,
|
||||
PageSize: 10,
|
||||
After: rootId + "__bad",
|
||||
})
|
||||
require.Nil(t, resp3.Error)
|
||||
require.NotNil(t, uss3.Threads)
|
||||
require.Len(t, uss3.Threads, 0)
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -301,7 +301,7 @@ func (s *SqlThreadStore) GetThreadsForUser(userId, teamId string, opts model.Get
|
||||
|
||||
result := &model.Threads{
|
||||
Total: totalCount,
|
||||
Threads: nil,
|
||||
Threads: []*model.ThreadResponse{},
|
||||
TotalUnreadMentions: totalUnreadMentions,
|
||||
TotalUnreadThreads: totalUnreadThreads,
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user