[Partial Fix #16623]: Fix initialism errors in codebase. (#16979)

Automatic Merge
Этот коммит содержится в:
SimonSimonB
2021-02-25 20:22:27 +01:00
коммит произвёл GitHub
родитель 0ba28a712a
Коммит 6fa4c8b8bd
36 изменённых файлов: 875 добавлений и 875 удалений

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

@@ -73,10 +73,10 @@ func (cfg *AutoPostCreator) CreateRandomPost() (*model.Post, error) {
}
func (cfg *AutoPostCreator) CreateRandomPostNested(parentId, rootId string) (*model.Post, error) {
var fileIds []string
var fileIDs []string
if cfg.HasImage {
var err error
fileIds, err = cfg.UploadTestFile()
fileIDs, err = cfg.UploadTestFile()
if err != nil {
return nil, err
}
@@ -95,7 +95,7 @@ func (cfg *AutoPostCreator) CreateRandomPostNested(parentId, rootId string) (*mo
ParentId: parentId,
RootId: rootId,
Message: postText,
FileIds: fileIds,
FileIds: fileIDs,
}
rpost, err := cfg.a.CreatePostMissingChannel(post, true)
if err != nil {