fix ignoreWarning
This commit is contained in:
parent
b2d3a6199d
commit
bf8f944ab1
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user