diff options
-rw-r--r-- | upd8.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upd8.js b/upd8.js index fae08026..6dc80028 100644 --- a/upd8.js +++ b/upd8.js @@ -525,7 +525,7 @@ async function processAlbumDataFile(file) { const groupName = getBasicField(section, 'Group'); if (groupName) { group = groupName; - groupColor = getBasicField(section, 'FG'); + groupColor = getBasicField(section, 'FG') || album.color; album.usesGroups = true; continue; } |