fix ignoreWarning

This commit is contained in:
Sven Fuchs 2013-09-06 16:11:03 +02:00
parent b2d3a6199d
commit bf8f944ab1

View File

@ -85,5 +85,9 @@ $.extend Travis.Pusher.prototype,
when 'annotation:created', 'annotation:updated'
{ annotation: data }
warn: (type, warning) ->
console.warn(warning)
warn: (type, object) ->
console.warn(type, object.error) unless @ignoreWarning(type, object.error)
ignoreWarning: (type, error) ->
if message = error?.data?.message
message.indexOf('Existing subscription') == 0 or message.indexOf('No current subscription') == 0