backend-plus 2.6.2 → 2.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/backend-plus.js +1 -1
- package/package.json +1 -1
package/lib/backend-plus.js
CHANGED
|
@@ -2500,7 +2500,7 @@ AppBackend.prototype.scanSkinFiles = function scanSkinFiles() {
|
|
|
2500
2500
|
|
|
2501
2501
|
var skinConfig = be.config.server.skins && be.config.server.skins[skinName];
|
|
2502
2502
|
|
|
2503
|
-
if (skinConfig && skinConfig['local-path']) {
|
|
2503
|
+
if (skinName && skinConfig && skinConfig['local-path']) {
|
|
2504
2504
|
try {
|
|
2505
2505
|
var skinPath = Path.join(Path.resolve(skinConfig['local-path']), skinName);
|
|
2506
2506
|
|
package/package.json
CHANGED