remove deprecated metadata field

This commit is contained in:
Jeremy Kauffman 2017-06-15 20:05:15 -04:00
parent f95853892b
commit 620ac04db2

View file

@ -9,7 +9,7 @@ import Link from "component/link";
import UriIndicator from "component/uriIndicator"; import UriIndicator from "component/uriIndicator";
const FormatItem = props => { const FormatItem = props => {
const { contentType, metadata: { author, language, license } } = props; const { contentType, metadata: { language, license } } = props;
const mediaType = lbry.getMediaType(contentType); const mediaType = lbry.getMediaType(contentType);
@ -19,9 +19,6 @@ const FormatItem = props => {
<tr> <tr>
<td>{__("Content-Type")}</td><td>{mediaType}</td> <td>{__("Content-Type")}</td><td>{mediaType}</td>
</tr> </tr>
<tr>
<td>{__("Author")}</td><td>{author}</td>
</tr>
<tr> <tr>
<td>{__("Language")}</td><td>{language}</td> <td>{__("Language")}</td><td>{language}</td>
</tr> </tr>