Skip to content

Commit

Permalink
electron app fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cproof committed Sep 22, 2023
1 parent 365546c commit 5c0db2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/Opentest.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function printTestData(testdata, target) {
if (testdata.signal_strength && testdata.lte_rsrp) {
ODF.classificationFormatter(testdata.lte_rsrp, "lte_rsrp", testdata.signal_classification, 'dBm', testdata.cat_technology.toLowerCase());
}
else {
else if (testdata.signal_strength || testdata.lte_rsrp) {
//lte
ODF.classificationFormatter(testdata.lte_rsrp, "signal_strength", testdata.signal_classification, 'dBm', testdata.cat_technology.toLowerCase());
}
Expand Down

0 comments on commit 5c0db2c

Please sign in to comment.