Commit 02f7bea1fad5ebea38a56450197e0455d7be4410

Authored by Adhidarma Hadiwinoto
1 parent 676d862bd4
Exists in master

IMSI dan MSISDN tambah pesan

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

lib/partner-mkios.js
... ... @@ -321,7 +321,7 @@ function buy(task) {
321 321 function report(data) {
322 322 if (data.message) {
323 323 if (matrix.modem.imsi) {
324   - data.message = 'CHIP-IMSI: ' + matrix.modem.imsi + '; ';
  324 + data.message = 'CHIP-IMSI: ' + matrix.modem.imsi + '; ' + data.message;
325 325 }
326 326  
327 327 let msisdn = config.partner.msisdn;
... ... @@ -330,7 +330,7 @@ function report(data) {
330 330 }
331 331  
332 332 if (msisdn) {
333   - data.message = 'CHIP-MSISDN: ' + msisdn + '; ';
  333 + data.message = 'CHIP-MSISDN: ' + msisdn + '; ' + data.message;
334 334 }
335 335 }
336 336 pullgw.report(data);