Commit fa643abe639d15d2b984445c850b563743e79886

Authored by Adhidarma Hadiwinoto
1 parent 543db86435
Exists in master

pastikan mengembalikan rc dalam bentuk string bukan number

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

... ... @@ -100,9 +100,9 @@ function topupRequest(task) {
100 100 responseMessage = result.direct_ack.info[0];
101 101  
102 102 if (result.direct_ack.request_status[0] == 'OK') {
103   - responseCode = 68;
  103 + responseCode = '68';
104 104 } else {
105   - responseCode = 40;
  105 + responseCode = '40';
106 106  
107 107 var new_response_code = responseCodeFromMessage(responseMessage);
108 108 if (new_response_code) {