mirror of
https://github.com/romancm/gamebrary
synced 2024-11-24 20:23:06 +00:00
Null check!
This commit is contained in:
parent
e37b1a2280
commit
4f98cbceca
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
customWallpaper() {
|
customWallpaper() {
|
||||||
return this.settings.wallpapers && this.settings.wallpapers[this.platform.code]
|
return this.settings && this.settings.wallpapers && this.settings.wallpapers[this.platform.code]
|
||||||
? this.settings.wallpapers[this.platform.code].url
|
? this.settings.wallpapers[this.platform.code].url
|
||||||
: '';
|
: '';
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue