mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Fixes Misc Issues with Album Metadata Extrafiles (#145)
* Fixes Misc Issues with Album Metadata Extrafiles * Fixed: Move Empty Subfolders to after ArtistRenamedEvent and Metadata mover * Remove Path from Album Table, Fix Wdtv, MediaBrowser, Roksbox * Remove Album Path from UI * Remove Comments and add Jpeg extension to XMBC image regex
This commit is contained in:
@@ -67,7 +67,6 @@ class AlbumRow extends Component {
|
||||
title,
|
||||
isSaving,
|
||||
artistMonitored,
|
||||
path,
|
||||
columns
|
||||
} = this.props;
|
||||
|
||||
@@ -122,16 +121,6 @@ class AlbumRow extends Component {
|
||||
);
|
||||
}
|
||||
|
||||
if (name === 'path') {
|
||||
return (
|
||||
<TableRowCell key={name}>
|
||||
{
|
||||
path
|
||||
}
|
||||
</TableRowCell>
|
||||
);
|
||||
}
|
||||
|
||||
if (name === 'mediumCount') {
|
||||
return (
|
||||
<TableRowCell key={name}>
|
||||
@@ -221,7 +210,6 @@ AlbumRow.propTypes = {
|
||||
unverifiedSceneNumbering: PropTypes.bool,
|
||||
artistMonitored: PropTypes.bool.isRequired,
|
||||
statistics: PropTypes.object.isRequired,
|
||||
path: PropTypes.string,
|
||||
mediaInfo: PropTypes.object,
|
||||
alternateTitles: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
columns: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
|
||||
@@ -39,11 +39,6 @@ export const defaultState = {
|
||||
label: 'Title',
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'path',
|
||||
label: 'Path',
|
||||
isVisible: false
|
||||
},
|
||||
{
|
||||
name: 'releaseDate',
|
||||
label: 'Release Date',
|
||||
|
||||
Reference in New Issue
Block a user