Skip to content

Commit

Permalink
Change custom vehicle data type
Browse files Browse the repository at this point in the history
Change custom vehcile data type from
OEM_SPECIFIC to VEHICLEDATA_OEM_CUSTOM_DATA.
  • Loading branch information
valerii authored and AKalinich-Luxoft committed Aug 21, 2019
1 parent cf36a64 commit 51ae7b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controller/sdl/Abstract/Controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ SDL.SDLController = Em.Object.extend(
var parsedData = JSON.parse(data);
for (var i in parsedData) {
if(undefined === SDL.SDLVehicleInfoModel.vehicleData[i]) {
SDL.SDLVehicleInfoModel.eVehicleDataType[i] = 'OEM_SPECIFIC';
SDL.SDLVehicleInfoModel.eVehicleDataType[i] = 'VEHICLEDATA_OEM_CUSTOM_DATA';
params[i] = parsedData[i];
continue;
}
Expand Down

0 comments on commit 51ae7b1

Please sign in to comment.