summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
Diffstat (limited to 'api')
-rw-r--r--api/import.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/api/import.go b/api/import.go
index 63dfb033d..8681e74c8 100644
--- a/api/import.go
+++ b/api/import.go
@@ -35,6 +35,12 @@ func ImportPost(post *model.Post) {
l4g.Debug(utils.T("api.import.import_post.saving.debug"), post.UserId, post.Message)
}
+ for _, fileId := range post.FileIds {
+ if result := <-Srv.Store.FileInfo().AttachToPost(fileId, post.Id); result.Err != nil {
+ l4g.Error(utils.T("api.import.import_post.attach_files.error"), post.Id, post.FileIds, result.Err)
+ }
+ }
+
post.Id = ""
post.CreateAt++
post.Message = remainder