Fix pusher channel subscribe

When channel_prefix is not defined it should be set to empty string.
This commit is contained in:
Piotr Sarnacki 2015-02-03 19:14:47 +01:00
parent 961b487fac
commit 90b91bd49b
3 changed files with 5 additions and 5 deletions

View File

@ -51,7 +51,6 @@ App = Ember.Application.extend(Ember.Evented,
store.pushPayload(commits: [commit])
if event == 'job:log'
console.log 'store: received job:log event', data if Log.DEBUG
data = data.job
job = store.recordForId('job', data.id)
job.appendLog(number: parseInt(data.number), content: data._log, final: data.final)

View File

@ -19,7 +19,7 @@ Route = TravisRoute.extend
activate: ->
# subscribe to pusher only if we're at a main route
if config.pusher.channels
@get('pusher').subscribeAll(config.pusher.channels)
unless config.pro
@get('pusher').subscribeAll(['common'])
`export default Route`

View File

@ -38,8 +38,9 @@ TravisPusher.prototype.unsubscribe = (channel) ->
@pusher.unsubscribe(channel) if @pusher?.channel(channel)
TravisPusher.prototype.prefix = (channel) ->
if channel.indexOf(config.pusher.channel_prefix) != 0
"#{config.pusher.channel_prefix}#{channel}"
prefix = config.pusher.channel_prefix || ''
if channel.indexOf(prefix) != 0
"#{prefix}#{channel}"
else
channel