frontend: fixes to searching

This commit is contained in:
2023-09-19 02:42:13 -04:00
parent aa17f99252
commit 1497bf4a95
2 changed files with 17 additions and 18 deletions

View File

@ -343,9 +343,8 @@ class FE_System(FE_Base):
if ac_id_search is not None:
u = self.data.arcade.get_arcade(ac_id_search[0])
if ul is not None:
if u is not None:
aclist.append(u._asdict())
if u is not None:
aclist.append(u._asdict())
elif ac_name_search is not None:
ul = self.data.arcade.get_arcade_by_name(ac_name_search[0])