fix: issue with current account not being present for some user

This commit is contained in:
Tejaswini Chile 2022-12-12 13:16:27 +05:30 committed by fayazara
parent a98bffbe2b
commit 6c07ab8bb6

View file

@ -4,8 +4,7 @@ class TextSearch
DEFAULT_STATUS = 'open'.freeze
def initialize(current_user, params)
@current_user = current_user
@current_account = current_user.account
@current_account = current_user.account || Current.account
@params = params
end