From dcb79685bc25cf3bc77d434255063fc4933cdf44 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Fri, 24 Apr 2020 15:12:07 -0400 Subject: [PATCH] fix typo --- ui/redux/actions/content.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui/redux/actions/content.js b/ui/redux/actions/content.js index 2a4f17bdc..6f5d1da51 100644 --- a/ui/redux/actions/content.js +++ b/ui/redux/actions/content.js @@ -12,7 +12,6 @@ import { makeSelectUnreadByChannel } from 'redux/selectors/subscriptions'; import { ACTIONS, Lbry, - Lbryapi, makeSelectFileInfoForUri, selectFileInfosByOutpoint, makeSelectChannelForClaimUri, @@ -22,7 +21,7 @@ import { selectDownloadingByOutpoint, makeSelectClaimForUri, } from 'lbry-redux'; -import { makeSelectCostInfoForUri } from 'lbryinc'; +import { makeSelectCostInfoForUri, Lbryio } from 'lbryinc'; import { makeSelectClientSetting, selectosNotificationsEnabled, selectDaemonSettings } from 'redux/selectors/settings'; import { formatLbryUrlForWeb } from 'util/url'; @@ -202,7 +201,7 @@ export function doPlayUri( attemptPlay(instantPurchaseMax.amount); } else { // Need to convert currency of instant purchase maximum before trying to play - Lbryapi.getExchangeRates().then(({ LBC_USD }) => { + Lbryio.getExchangeRates().then(({ LBC_USD }) => { attemptPlay(instantPurchaseMax.amount / LBC_USD); }); }