Fix error handling in (*FS).Remove()
This commit is contained in:
parent
2c2d854929
commit
e3a6bd308d
@ -46,7 +46,7 @@ func (blefs *FS) Remove(path string) error {
|
|||||||
// Read status byte
|
// Read status byte
|
||||||
return decode(data, &status)
|
return decode(data, &status)
|
||||||
})
|
})
|
||||||
if status == FSStatusError {
|
if status != FSStatusOk {
|
||||||
// If status is not ok, return error
|
// If status is not ok, return error
|
||||||
return FSError{status}
|
return FSError{status}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user