Removed unneeded space.
This commit is contained in:
parent
3641a41af1
commit
95f2b04564
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ class Channel < ApplicationModel
|
|||
channels = Channel.where( 'active = ? AND area LIKE ?', true, '%::Inbound' )
|
||||
channels.each { |channel|
|
||||
begin
|
||||
c = eval 'Channel::' + channel[:adapter].upcase + '.new' # rubocop:disable Lint/Eval
|
||||
c = eval 'Channel::' + channel[:adapter].upcase + '.new' # rubocop:disable Lint/Eval
|
||||
c.fetch(channel)
|
||||
rescue Exception => e
|
||||
logger.error "can't use " + 'Channel::' + channel[:adapter].upcase
|
||||
|
|
Loading…
Reference in a new issue