fix AttributeError when fetching an instance by name

This commit is contained in:
Izalia Mae 2022-12-14 08:39:56 -05:00
parent 0322fa567b
commit 1d8de63d95

View file

@ -187,7 +187,7 @@ class Connection(tinysql.ConnectionMixin):
query = 'SELECT * FROM instances WHERE domain = :data OR actor = :data OR inbox = :data'
row = self.execute(query, dict(data=data), table='instances').one()
return row if row.joined else None
return row if row and row.joined else None
def get_instances(self):