mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-25 11:04:00 +00:00
Allow availableSkins to be optional
This commit is contained in:
parent
a9e3614ef5
commit
0a87c7ba78
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ class Winamp {
|
|||
"The misspelled option `avaliableSkins` is deprecated. Please use `availableSkins` instead."
|
||||
);
|
||||
this.store.dispatch({ type: SET_AVAILABLE_SKINS, skins: avaliableSkins });
|
||||
} else {
|
||||
} else if (availableSkins != null) {
|
||||
this.store.dispatch({ type: SET_AVAILABLE_SKINS, skins: availableSkins });
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue