From f699dc85dd51194729e88347c32cafb49cf980a0 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 14 Feb 2016 21:55:05 -0500 Subject: [PATCH] fix recording creator --- .../components/recordingcreator/recordingcreator.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard-ui/components/recordingcreator/recordingcreator.js b/dashboard-ui/components/recordingcreator/recordingcreator.js index 1d5e813250..c1dd32f721 100644 --- a/dashboard-ui/components/recordingcreator/recordingcreator.js +++ b/dashboard-ui/components/recordingcreator/recordingcreator.js @@ -280,7 +280,7 @@ if (program.ServiceName == 'Emby') { context.querySelector('.convertRecordingsContainer').classList.remove('hide'); - showConvertRecordingsUnlockMessage(); + showConvertRecordingsUnlockMessage(context); } else { context.querySelector('.convertRecordingsContainer').classList.add('hide'); } @@ -291,8 +291,8 @@ function showConvertRecordingsUnlockMessage(context) { Dashboard.getPluginSecurityInfo().then(function(regInfo) { - - if (regInfo.IsRegistered) { + + if (regInfo.IsMBSupporter) { context.querySelector('.btnSupporterForConverting').classList.add('hide'); } else { context.querySelector('.btnSupporterForConverting').classList.remove('hide');