From ae81e8e33ca090bf0d2b6f0e4de732a1942cfbb7 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Sat, 27 Apr 2019 20:44:57 -0400 Subject: [PATCH] Fix: fee value on sub page --- src/ui/redux/actions/subscriptions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/redux/actions/subscriptions.js b/src/ui/redux/actions/subscriptions.js index 6ac08af22..2a43e2bcf 100644 --- a/src/ui/redux/actions/subscriptions.js +++ b/src/ui/redux/actions/subscriptions.js @@ -261,7 +261,7 @@ export const doCheckSubscription = (subscriptionUri: string, shouldNotify?: bool const uri = buildURI({ contentName: claim.name, claimId: claim.claim_id }, true); const shouldDownload = shouldAutoDownload && - Boolean(downloadCount < SUBSCRIPTION_DOWNLOAD_LIMIT && !claim.value.stream.fee); + Boolean(downloadCount < SUBSCRIPTION_DOWNLOAD_LIMIT && !claim.value.fee; // Add the new content to the list of "un-read" subscriptions if (shouldNotify) {