Skip to content

Commit

Permalink
Merge pull request NAStool#3152 from jxxghp/dev
Browse files Browse the repository at this point in the history
fix #2534
  • Loading branch information
jxxghp authored Jan 25, 2023
2 parents ca8fd52 + a284936 commit e92f6ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/message/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ def get_interactive_client(self, client_type=None):
"""
if client_type:
for client in self._active_clients:
if client.get("search_type") == client_type:
if client.get("search_type") == client_type and client.get('interactive'):
return client
return None
else:
Expand Down

0 comments on commit e92f6ae

Please sign in to comment.