refactor: if the user has the file pinned and no import exists, assume a completed status
This commit is contained in:
parent
7665937196
commit
5b2a86275f
|
@ -1166,7 +1166,10 @@ func (s *S5API) accountPinStatus(jc jape.Context) {
|
||||||
meta, err := s._import.GetImport(jc.Request.Context(), decodedCid.Hash.HashBytes())
|
meta, err := s._import.GetImport(jc.Request.Context(), decodedCid.Hash.HashBytes())
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
s.sendErrorResponse(jc, NewS5Error(ErrKeyResourceNotFound, err))
|
jc.Encode(&AccountPinStatusResponse{
|
||||||
|
Status: models.ImportStatusCompleted,
|
||||||
|
Progress: 100,
|
||||||
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue