Bug 768428 - B2G RIL: REQUEST_GET_IMSI doesn't have response on Akami. r=philikon

This commit is contained in:
Yoshi Huang 2012-06-26 17:34:15 +02:00
parent 95c1dd9e55
commit 5ad40fa4ad

View File

@ -997,7 +997,14 @@ let RIL = {
},
getIMSI: function getIMSI() {
Buf.simpleRequest(REQUEST_GET_IMSI);
if (RILQUIRKS_V5_LEGACY) {
Buf.simpleRequest(REQUEST_GET_IMSI);
return;
}
let token = Buf.newParcel(REQUEST_GET_IMSI);
Buf.writeUint32(1);
Buf.writeString(null);
Buf.sendParcel();
},
/**