bugfix
This commit is contained in:
parent
5818270803
commit
2bd2088248
1 changed files with 2 additions and 1 deletions
|
@ -1212,6 +1212,7 @@ class Database(SQLiteMixin):
|
||||||
|
|
||||||
async def get_address_count(self, cols=None, read_only=False, **constraints):
|
async def get_address_count(self, cols=None, read_only=False, **constraints):
|
||||||
# this is a count query that returns one line. Don't pass offset.
|
# this is a count query that returns one line. Don't pass offset.
|
||||||
|
if 'offset' in constraints:
|
||||||
constraints.pop('offset')
|
constraints.pop('offset')
|
||||||
count = await self.select_addresses('COUNT(*) as total', read_only=read_only, **constraints)
|
count = await self.select_addresses('COUNT(*) as total', read_only=read_only, **constraints)
|
||||||
return count[0]['total'] or 0
|
return count[0]['total'] or 0
|
||||||
|
|
Loading…
Reference in a new issue