mirror of
https://github.com/matrix-construct/construct
synced 2025-01-16 01:26:58 +01:00
ircd::db: Fix cell::load seek validation.
This commit is contained in:
parent
1e7325eb40
commit
2171cc23e8
1 changed files with 4 additions and 1 deletions
|
@ -8976,7 +8976,10 @@ ircd::db::cell::load(const string_view &index,
|
|||
}
|
||||
|
||||
database::column &c(this->c);
|
||||
return seek(c, index, opts, this->it);
|
||||
if(!seek(c, index, opts, this->it))
|
||||
return false;
|
||||
|
||||
return valid(index);
|
||||
}
|
||||
|
||||
ircd::db::cell &
|
||||
|
|
Loading…
Reference in a new issue