mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-18 19:01:38 +03:00
commit
a6bdc6a809
@ -82,6 +82,14 @@ export const parseComments = async (comments) => {
|
|||||||
comment.markdownBody = get(comment, 'body');
|
comment.markdownBody = get(comment, 'body');
|
||||||
comment.body = renderPostBody(comment, true, webp);
|
comment.body = renderPostBody(comment, true, webp);
|
||||||
|
|
||||||
|
//parse json meta;
|
||||||
|
if (typeof comment.json_metadata === 'string' || comment.json_metadata instanceof String) {
|
||||||
|
try {
|
||||||
|
comment.json_metadata = JSON.parse(comment.json_metadata);
|
||||||
|
} catch (error) {
|
||||||
|
comment.json_metadata = {};
|
||||||
|
}
|
||||||
|
}
|
||||||
//calculate and set total_payout to show to user.
|
//calculate and set total_payout to show to user.
|
||||||
const totalPayout =
|
const totalPayout =
|
||||||
parseAsset(comment.pending_payout_value).amount +
|
parseAsset(comment.pending_payout_value).amount +
|
||||||
|
Loading…
Reference in New Issue
Block a user