Skip to content

Commit

Permalink
Merge pull request #1 from ValeriiMalkov/fix/expandable_design_for_pr…
Browse files Browse the repository at this point in the history
…oprietary_data_exchange

Bugfix error at the OnSystemRequest method and
  • Loading branch information
Valerii Malkov (GitHub) authored Apr 19, 2018
2 parents a5209ce + f4bd986 commit fff7cf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/view/sdl/SystemRequestView.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ SDL.SystemRequest = Em.ContainerView.create(
{
elementId: 'systemRequestLabel',
classNames: 'systemRequestLabel',
content: 'System Request'
content: 'requestSubType'
}
),
/**
Expand Down
2 changes: 1 addition & 1 deletion ffw/BasicCommunicationRPC.js
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ FFW.BasicCommunication = FFW.RPCObserver
if (appID) {
JSONMessage.params.appID = appID;
}
if(subType.length > 0){
if(subType && subType.length > 0){
if (type == 'OEM_SPECIFIC'||
type == 'HTTP'||
type == 'PROPRIETARY') {
Expand Down

0 comments on commit fff7cf6

Please sign in to comment.