mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 794767 - B2G RIL: Handle data call error without APN name. r=vicamo
This commit is contained in:
parent
3d3703a920
commit
d613ab3419
@ -3121,7 +3121,9 @@ let RIL = {
|
||||
// can be removed if is the same as the current one.
|
||||
for each (let newDataCall in datacalls) {
|
||||
if (newDataCall.status != DATACALL_FAIL_NONE) {
|
||||
newDataCall.apn = newDataCallOptions.apn;
|
||||
if (newDataCallOptions) {
|
||||
newDataCall.apn = newDataCallOptions.apn;
|
||||
}
|
||||
this._sendDataCallError(newDataCall, newDataCall.status);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user