sum up lbc amounts

This commit is contained in:
Anthony 2021-07-25 20:03:54 +02:00
parent 2117072bad
commit bed9856e48
No known key found for this signature in database
GPG key ID: C386D3C93D50E356

View file

@ -44,27 +44,27 @@ export default function LivestreamComments(props: Props) {
doCommentList,
fetchingComments,
doSuperChatList,
superChatsTotalAmount,
myChannels,
superChats, // superchats organized by tip amount
} = props;
let { superChatsReversed, superChatsFiatAmount } = props;
superChatsFiatAmount = 0;
let { superChatsReversed, superChatsFiatAmount, superChatsTotalAmount } = props;
// sum total amounts for fiat tips and lbc tips
if(superChats){
console.log(superChats);
let fiatAmount = 0;
let LBCAmount = 0;
for(const superChat of superChats){
if(superChat.is_fiat){
fiatAmount = fiatAmount + superChat.support_amount;
} else {
LBCAmount = LBCAmount + superChat.support_amount;
}
}
superChatsFiatAmount = fiatAmount;
superChatsTotalAmount = LBCAmount;
}
// TODO: why doesn't this work?