* Fix #10975. GetEtag is sync now

* Revert of modifications to go.mod and go.sum
Этот коммит содержится в:
Rodrigo Villablanca Vásquez
2019-05-31 17:58:24 -04:00
коммит произвёл Joram Wilander
родитель 719412c1a0
Коммит e20d91b00e
5 изменённых файлов: 35 добавлений и 38 удалений

Просмотреть файл

@@ -607,7 +607,7 @@ func (a *App) GetPosts(channelId string, offset int, limit int) (*model.PostList
}
func (a *App) GetPostsEtag(channelId string) string {
return (<-a.Srv.Store.Post().GetEtag(channelId, true)).Data.(string)
return a.Srv.Store.Post().GetEtag(channelId, true)
}
func (a *App) GetPostsSince(channelId string, time int64) (*model.PostList, *model.AppError) {