Skip to content

Commit a08d3be

Browse files
committed
add error handling
1 parent 95c74a7 commit a08d3be

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

api/v2/contents.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ func (s *apiV2) handleAdd(c echo.Context, u *util.User) error {
139139
dserv := merkledag.NewDAGService(bserv)
140140

141141
uploadedContent, err := s.loadContentFromRequest(c, ctx, uploadType, bs, dserv)
142+
if err != nil {
143+
return err
144+
}
142145

143146
// if splitting is disabled and uploaded content size is greater than content size limit
144147
// reject the upload, as it will only get stuck and deals will never be made for it
@@ -164,10 +167,13 @@ func (s *apiV2) handleAdd(c echo.Context, u *util.User) error {
164167
makeDeal := true
165168
cols := []*collections.CollectionRef{
166169
{
167-
Collection: collection.ID,
168-
Path: &path,
170+
Path: &path,
169171
},
170172
}
173+
if collection != nil {
174+
cols[0].Collection = collection.ID
175+
}
176+
171177
pinstatus, pinOp, err := s.cm.PinContent(ctx, u.ID, uploadedContent.CID, uploadedContent.Filename, cols, uploadedContent.Origins, 0, nil, makeDeal)
172178
if err != nil {
173179
return err

0 commit comments

Comments
 (0)