Make per-board filters work as expected on boards with characters in names that are escaped by encodeURIComponent.

This commit is contained in:
ccd0 2019-04-06 22:47:42 -07:00
parent 95ef5c03c0
commit 69c60527ff

View File

@ -109,7 +109,7 @@ Filter =
for boardID2 in SW[siteProperties.software]?.sfwBoards?(boardID is 'sfw') or []
boards["#{siteID}/#{boardID2}"] = true
else
boards["#{siteID}/#{boardID}"] = true
boards["#{siteID}/#{encodeURIComponent boardID}"] = true
Filter.parseBoardsMemo[boardsRaw] = boards
boards