summaryrefslogtreecommitdiff
path: root/src/components/HMI/app/model/sdl/MediaModel.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/HMI/app/model/sdl/MediaModel.js')
-rw-r--r--src/components/HMI/app/model/sdl/MediaModel.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/components/HMI/app/model/sdl/MediaModel.js b/src/components/HMI/app/model/sdl/MediaModel.js
index b51156d2fd..0feceb2119 100644
--- a/src/components/HMI/app/model/sdl/MediaModel.js
+++ b/src/components/HMI/app/model/sdl/MediaModel.js
@@ -336,10 +336,12 @@ SDL.SDLMediaModel = SDL.SDLAppModel.extend({
this.appInfo.set('alignment', "text-align:center");
}
- if (params.graphic && params.graphic.value != '') {
- this.appInfo.set('trackIcon', params.graphic.value);
- } else {
- this.appInfo.set('trackIcon', 'images/sdl/audio_icon.jpg');
+ if (params.graphic != null) {
+ if (params.graphic.value != "") {
+ this.appInfo.set('trackIcon', params.graphic.value);
+ } else {
+ this.appInfo.set('trackIcon', 'images/sdl/audio_icon.jpg');
+ }
}
if ("softButtons" in params) {