Commit 9d5467ecba4ad5959f4d328ae1a1780bfcc24c5b
1 parent
5dbce6d2ec
Exists in
master
penanganan invalid Signature
Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff
partner-otomax.js
... | ... | @@ -119,6 +119,9 @@ function parseMessage(task, message) { |
119 | 119 | else if (message.indexOf('GAGAL') >= 0) { |
120 | 120 | rc = '40'; |
121 | 121 | } |
122 | + else if (message.indexOf('Invalid Signature') >= 0) { | |
123 | + rc = '40'; | |
124 | + } | |
122 | 125 | |
123 | 126 | callbackReport(task.requestId, rc, message); |
124 | 127 | } |