Update sqlite3.go

This commit is contained in:
Fenny
2020-11-05 04:26:14 +01:00
parent 567b6de7e7
commit eb8560f138

View File

@@ -108,7 +108,7 @@ func (s *Storage) Get(key string) ([]byte, error) {
if err.Error() != noRows {
return nil, err
}
return nil, err.Error()
return nil, err
}
// If the expiration time has already passed, then return nil