Fix for upstream files w/bad keywords

This commit is contained in:
John Mulhausen 2017-04-07 16:12:33 -07:00
parent ef295e1ffe
commit 96b09c113b
No known key found for this signature in database
GPG Key ID: 0FC599ECCDBFDE02
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ function renderTopicsByTagTable(tagToLookup,divID)
thisPage = metadata.pages[i];
if (thisPage.keywords)
{
var keywordArray = thisPage.keywords.split(",");
var keywordArray = thisPage.keywords.toString().split(",");
for (n=0;n<keywordArray.length;n++)
{
if (keywordArray[n].trim().toLowerCase()==tagToLookup.toLowerCase())