Fix checkStatus call in (*Device).FS()

This commit is contained in:
Arsen Musayelyan 2021-11-25 13:35:58 -08:00
parent 58d5036f20
commit bd057815cf
1 changed files with 1 additions and 1 deletions

View File

@ -672,7 +672,7 @@ func (i *Device) initNotifEvent() error {
// FS creates and returns a new filesystem from the device
func (i *Device) FS() (*blefs.FS, error) {
if err := i.checkStatus(i.currentTimeChar); err != nil {
if err := i.checkStatus(i.fsTransferChar); err != nil {
return nil, err
}
return blefs.New(i.fsTransferChar)