From 4b0aa15d019ebc103fbb11add5a8de70c13ccb84 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Sat, 27 Apr 2019 21:15:51 -0400 Subject: [PATCH] fix: syntax Oops :) --- 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 2a43e2bcf..6192b7849 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.fee; + Boolean(downloadCount < SUBSCRIPTION_DOWNLOAD_LIMIT && !claim.value.fee); // Add the new content to the list of "un-read" subscriptions if (shouldNotify) {