Skip to content

Commit

Permalink
fixup! Result code for SubscribeVehicleData request
Browse files Browse the repository at this point in the history
The problem was when the application try to subscribe to vehicledata second
time, result code should be IGNORED instead of DATA_NOT_AVAILABLE
  • Loading branch information
valerii committed Aug 27, 2019
1 parent 0ae8a93 commit cb240f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/model/sdl/VehicleInfoModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ SDL.SDLVehicleInfoModel = Em.Object.create(
return SDL.SDLModel.data.resultCode.WARNINGS;
}

return SDL.SDLModel.data.resultCode.DATA_NOT_AVAILABLE;
return SDL.SDLModel.data.resultCode.IGNORED;
},
/**
* Function returns response message to VehicleInfoRPC
Expand Down

0 comments on commit cb240f4

Please sign in to comment.