Skip to content

Commit

Permalink
Better error for missing pending blob.
Browse files Browse the repository at this point in the history
  • Loading branch information
emmiegit committed Sep 30, 2024
1 parent 9f9f091 commit b6785be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepwell/src/services/blob/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ impl BlobService {
..
} = match row {
Some(pending) => pending,
None => return Err(Error::GeneralNotFound),
None => return Err(Error::BlobNotFound),
};

if user_id != created_by {
Expand Down

0 comments on commit b6785be

Please sign in to comment.