Skip to content

Commit

Permalink
Treat all Huawei MOs as upper case when importing data
Browse files Browse the repository at this point in the history
  • Loading branch information
erssebaggala committed Oct 17, 2019
1 parent b5ae3f2 commit 4eb1c2a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions background/background-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,11 @@ async function loadCMDataViaStream(vendor, format, csvFolder,truncateTables, bef
moName = 'invBSM';
}

//Make sure Huawei MO names are always upper case
if(vendor.toLowerCase() === 'huawei'){
moName = moName.toUpperCase();
}

//Load Motorola Cell X Export
if(vendor.toLowerCase("motorola") && format === 'CELL_X_EXPORT'){
moName = 'cell_x_export';
Expand Down

0 comments on commit 4eb1c2a

Please sign in to comment.