Fix possible TypeError

This commit is contained in:
Deluan 2021-05-06 09:49:25 -04:00 committed by Joe Stump
parent 4264a5c6ef
commit cbc480a615
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -186,7 +186,8 @@ const LoadedAlbumGrid = ({ ids, data, basePath, width }) => {
}
const AlbumGridView = ({ albumListType, loaded, loading, ...props }) => {
const hide = (loading && albumListType === 'random') || !props.data
const hide =
(loading && albumListType === 'random') || !props.data || !props.ids
return hide ? <Loading /> : <LoadedAlbumGrid {...props} />
}