diff --git a/static/js/infoView.0xdb.js b/static/js/infoView.0xdb.js
index 74ce6bad..18c6cda8 100644
--- a/static/js/infoView.0xdb.js
+++ b/static/js/infoView.0xdb.js
@@ -422,14 +422,16 @@ pandora.ui.infoView = function(data) {
)
.appendTo($text);
- data.productionCompany && $('
')
- .addClass('OxSelectable')
- .css(css)
- .html(
- formatKey('studio')
- + formatValue(data.productionCompany, 'productionCompany')
- )
- .appendTo($text);
+ if (data.productionCompany && canSeeAllMetadata) {
+ $('
')
+ .addClass('OxSelectable')
+ .css(css)
+ .html(
+ formatKey('studio')
+ + formatValue(data.productionCompany, 'productionCompany')
+ )
+ .appendTo($text);
+ }
if (data.genre || (data.keyword && canSeeAllMetadata)) {
$div = $('
')