Commit afaf00c5a244ed6f8609eb92f42dbfb7e35b445d
1 parent
a96fd1133e
Exists in
master
PULL.REPORT: detail param
Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff
gateway/pull.js
... | ... | @@ -334,7 +334,8 @@ function report(data) { |
334 | 334 | raw: data.raw, |
335 | 335 | misc: data.misc, |
336 | 336 | product: data.product || ( (data.misc && data.misc.task && typeof data.misc.task.product === 'string') ? data.misc.task.product : null ), |
337 | - remote_product: data.remote_product || ( (data.misc && data.misc.task && typeof data.misc.task.remote_product === 'string') ? data.misc.task.remote_product : null ) | |
337 | + remote_product: data.remote_product || ( (data.misc && data.misc.task && typeof data.misc.task.remote_product === 'string') ? data.misc.task.remote_product : null ), | |
338 | + detail: data.detail || null, | |
338 | 339 | } |
339 | 340 | } |
340 | 341 |