mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 05:55:48 +01:00
fix crash if category or children is invalid
This commit is contained in:
@@ -103,7 +103,9 @@
|
|||||||
helpers.generateChildrenCategories = function(category) {
|
helpers.generateChildrenCategories = function(category) {
|
||||||
var html = '';
|
var html = '';
|
||||||
var relative_path = (typeof config !== 'undefined' ? config.relative_path : require('nconf').get('relative_path'));
|
var relative_path = (typeof config !== 'undefined' ? config.relative_path : require('nconf').get('relative_path'));
|
||||||
|
if (!category || !category.children) {
|
||||||
|
return html;
|
||||||
|
}
|
||||||
category.children.forEach(function(child) {
|
category.children.forEach(function(child) {
|
||||||
if (!child) {
|
if (!child) {
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user