Minor skinmanager code fix
This commit is contained in:
parent
bf72cbe440
commit
b4e8ff87fe
1 changed files with 1 additions and 1 deletions
|
@ -684,7 +684,7 @@ public class RequestEvaluator implements Runnable {
|
||||||
Skin skin = null;
|
Skin skin = null;
|
||||||
// FIXME: we can't do that, because if no db skinmanager exists we'll query over and over again
|
// FIXME: we can't do that, because if no db skinmanager exists we'll query over and over again
|
||||||
if (skinManager == null) {
|
if (skinManager == null) {
|
||||||
skinManager = currentNode.getNode ("skinmanager", true);
|
skinManager = currentNode == null ? null : currentNode.getNode ("skinmanager", true);
|
||||||
// System.err.println ("SKINMGR: "+skinManager);
|
// System.err.println ("SKINMGR: "+skinManager);
|
||||||
// mark as null
|
// mark as null
|
||||||
if (skinManager == null)
|
if (skinManager == null)
|
||||||
|
|
Loading…
Add table
Reference in a new issue