update build

This commit is contained in:
Sean Yesmunt 2018-11-27 10:53:44 -05:00
parent be023e0627
commit cbeb8ad918

4
dist/bundle.js vendored
View file

@ -8470,7 +8470,7 @@ rewards.claimReward = function (type, rewardParams) {
switch (type) {
case rewards.TYPE_FIRST_CHANNEL:
_lbryRedux.Lbry.claim_list_mine().then(function (claims) {
var claim = claims.reverse().find(function (foundClaim) {
var claim = claims.find(function (foundClaim) {
return foundClaim.name.length && foundClaim.name[0] === '@' && foundClaim.txid.length && foundClaim.type === 'claim';
});
if (claim) {
@ -8484,7 +8484,7 @@ rewards.claimReward = function (type, rewardParams) {
case rewards.TYPE_FIRST_PUBLISH:
_lbryRedux.Lbry.claim_list_mine().then(function (claims) {
var claim = claims.reverse().find(function (foundClaim) {
var claim = claims.find(function (foundClaim) {
return foundClaim.name.length && foundClaim.name[0] !== '@' && foundClaim.txid.length && foundClaim.type === 'claim';
});
if (claim) {