From 358ce68490311442c180e07672ff6aa80c59b26b Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Mon, 29 Jul 2019 14:32:15 -0400 Subject: [PATCH] fix doSendtip We added an isSupport parameter on redux side to support supports :) --- src/page/file/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/page/file/index.js b/src/page/file/index.js index 6258938..78a2e5d 100644 --- a/src/page/file/index.js +++ b/src/page/file/index.js @@ -77,8 +77,8 @@ const perform = dispatch => ({ purchaseUri: (uri, costInfo, saveFile) => dispatch(doPurchaseUri(uri, costInfo, saveFile)), deletePurchasedUri: uri => dispatch(doDeletePurchasedUri(uri)), resolveUri: uri => dispatch(doResolveUri(uri)), - sendTip: (amount, claimId, uri, successCallback, errorCallback) => - dispatch(doSendTip(amount, claimId, successCallback, errorCallback)), + sendTip: (amount, claimId, isSupport, successCallback, errorCallback) => + dispatch(doSendTip(amount, claimId, isSupport, successCallback, errorCallback)), setPlayerVisible: () => dispatch(doSetPlayerVisible(true)), stopDownload: (uri, fileInfo) => dispatch(doStopDownloadingFile(uri, fileInfo)), startDownload: (uri, outpoint, fileInfo) => dispatch(doStartDownload(uri, outpoint, fileInfo)),