diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/lib/command_tag/command/status_tools.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/command_tag/command/status_tools.rb b/app/lib/command_tag/command/status_tools.rb index 1f3b2d321..daa44601b 100644 --- a/app/lib/command_tag/command/status_tools.rb +++ b/app/lib/command_tag/command/status_tools.rb @@ -67,7 +67,7 @@ module CommandTag::Command::StatusTools def address_to_list(list_name) return if list_name.blank? - list_accounts = ListAccount.joins(:list).where(lists: { account: @account }).where('LOWER(lists.title) = ?', list_name.mb_chars.downcase).includes(&:account).map(&:account) + list_accounts = ListAccount.joins(:list).where(lists: { account: @account }).where('LOWER(lists.title) = ?', list_name.mb_chars.downcase).includes(:account).map(&:account) list_accounts.each { |target_account| mention(target_account) } end end |