Handle empty pools table error
This commit is contained in:
parent
e451b40084
commit
ba12b10f9d
@ -135,6 +135,12 @@ class Blocks {
|
|||||||
} else {
|
} else {
|
||||||
pool = await poolsRepository.$getUnknownPool();
|
pool = await poolsRepository.$getUnknownPool();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!pool) { // Something is wrong with the pools table, ignore pool indexing
|
||||||
|
logger.err('Unable to find pool, nor getting the unknown pool. Is the "pools" table empty?');
|
||||||
|
return blockExtended;
|
||||||
|
}
|
||||||
|
|
||||||
blockExtended.extras.pool = {
|
blockExtended.extras.pool = {
|
||||||
id: pool.id,
|
id: pool.id,
|
||||||
name: pool.name,
|
name: pool.name,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user