PageDaoSqlite::find: Return empty if not page found
This commit is contained in:
джерело
c07d0f66ef
коміт
a7137460f0
@ -39,10 +39,17 @@ bool PageDaoSqlite::exists(std::string name) const
|
||||
}
|
||||
|
||||
std::optional<Page> PageDaoSqlite::find(std::string name)
|
||||
{
|
||||
try
|
||||
{
|
||||
int pageid = fetchPageId(name);
|
||||
return find(pageid);
|
||||
}
|
||||
catch(const sqlite::errors::no_rows &e)
|
||||
{
|
||||
return { };
|
||||
}
|
||||
}
|
||||
|
||||
std::optional<Page> PageDaoSqlite::find(unsigned int id)
|
||||
{
|
||||
|
Завантаження…
Посилання в новій задачі
Block a user