0xDB info view: make studios depend on canSeeAllMetadata

This commit is contained in:
rolux 2013-08-01 14:56:37 +00:00
parent f230236fa3
commit 2734eb93f2

View file

@ -422,7 +422,8 @@ pandora.ui.infoView = function(data) {
)
.appendTo($text);
data.productionCompany && $('<div>')
if (data.productionCompany && canSeeAllMetadata) {
$('<div>')
.addClass('OxSelectable')
.css(css)
.html(
@ -430,6 +431,7 @@ pandora.ui.infoView = function(data) {
+ formatValue(data.productionCompany, 'productionCompany')
)
.appendTo($text);
}
if (data.genre || (data.keyword && canSeeAllMetadata)) {
$div = $('<div>')