Merge branch 'master' into mark-as-unread

Этот коммит содержится в:
Harrison Healey
2019-10-17 09:44:32 -04:00
родитель 6a5b264624 fffcef0b00
Коммит e5dbd45f94
21 изменённых файлов: 187 добавлений и 180 удалений

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

@@ -5,7 +5,6 @@ package app
import (
"encoding/json"
"fmt"
"io"
"net/http"
"os"
@@ -414,7 +413,7 @@ func (a *App) BuildPostReactions(postId string) (*[]ReactionImportData, *model.A
user, err = a.Srv.Store.User().Get(reaction.UserId)
if err != nil {
if err.Id == store.MISSING_ACCOUNT_ERROR { // this is a valid case, the user that reacted might've been deleted by now
mlog.Info(fmt.Sprintf("Skipping reactions by user %v, since the entity doesn't exist anymore", reaction.UserId))
mlog.Info("Skipping reactions by user since the entity doesn't exist anymore", mlog.String("user_id", reaction.UserId))
continue
}
return nil, err

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

@@ -6,7 +6,6 @@ package app
import (
"bufio"
"encoding/json"
"fmt"
"io"
"net/http"
"strings"
@@ -19,7 +18,7 @@ import (
func stopOnError(err LineImportWorkerError) bool {
if err.Error.Id == "api.file.upload_file.large_image.app_error" {
mlog.Warn(fmt.Sprintf("Large image import error: %s", err.Error.Error()))
mlog.Warn("Large image import error", mlog.Err(err.Error))
return false
}
return true

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

@@ -789,7 +789,7 @@ func (a *App) GetPostsForChannelAroundLastUnread(channelId, userId string, limit
return model.NewPostList(), nil
}
postList, err := a.GetPostThread(lastUnreadPostId, false)
postList, err := a.GetPostThread(lastUnreadPostId, skipFetchThreads)
if err != nil {
return nil, err
}