diff options
Diffstat (limited to 'src/upd8.js')
-rwxr-xr-x | src/upd8.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/upd8.js b/src/upd8.js index c9fc1d87..08365c11 100755 --- a/src/upd8.js +++ b/src/upd8.js @@ -782,6 +782,11 @@ async function processAlbumDataFile(file) { const album = {}; album.name = getBasicField(albumSection, 'Album'); + + if (!album.name) { + return {error: `The file "${path.relative(dataPath, file)}" is missing the "Album" field - maybe this is a misplaced file instead of album data?`}; + } + album.artists = getContributionField(albumSection, 'Artists') || getContributionField(albumSection, 'Artist'); album.wallpaperArtists = getContributionField(albumSection, 'Wallpaper Art'); album.wallpaperStyle = getMultilineField(albumSection, 'Wallpaper Style'); |