Revert "Merge pull request #41 from dr-dolomite/development-socat"

This reverts commit d916c987b5, reversing
changes made to 17a846fb12.
This commit is contained in:
iamromulan
2024-05-05 05:34:44 -04:00
parent d916c987b5
commit 0543a18a40
9 changed files with 68 additions and 204 deletions

View File

@@ -15,16 +15,14 @@ function parseCurrentSettings(rawdata) {
let bands = [];
// Append the values if there is separated by comma with a space.
// i.e. LTE BAND 3, LTE BAND 1
// Append the values if there is separated by comma
for (let i = 13; i < 17; i++) {
if (lines[i].split(",").length > 1) {
bands.push(lines[i].split(",")[3].replace(/\"/g, " "));
bands.push(lines[i].split(",")[3].replace(/\"/g, ""));
}
}
this.bands = bands;
if (this.cellLock4GStatus == 1 && this.cellLock5GStatus == 1) {
this.cellLockStatus = "Locked to 4G and 5G";