Removed "undefined" group

This commit is contained in:
freearhey 2019-07-19 11:53:33 +03:00
parent 414449988f
commit fe2b6431fc
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ function parseGroupTitle(item) {
let groupIndex = supportedGroups.map(g => g.toLowerCase()).indexOf(groupTitle.toLowerCase())
if(groupIndex === -1) {
groupTitle = 'Undefined'
groupTitle = ''
} else {
groupTitle = supportedGroups[groupIndex]
}