We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On steemit.com platform, Posts on feed should show vote counts.
On steemit.com platform, SteemPlus Feed shows undefined for vote count.
feedplus.js line 167
list_posts.push(Posts(window.SteemPlus.Sanitize.postBodyShort(elt.body), elt.title, elt.hasOwnProperty("first_reblogged_by") ? elt.first_reblogged_by : '', elt.created, elt.pending_payout_value, 0, elt.net_votes, elt.author, JSON.parse(elt.json_metadata).hasOwnProperty("tags") ? JSON.parse(elt.json_metadata).tags : [elt.category], urlImage, elt.url, voted));
Change net_votes to active_votes.length
list_posts.push(Posts(window.SteemPlus.Sanitize.postBodyShort(elt.body), elt.title, elt.hasOwnProperty("first_reblogged_by") ? elt.first_reblogged_by : '', elt.created, elt.pending_payout_value, 0, elt.active_votes.length, elt.author, JSON.parse(elt.json_metadata).hasOwnProperty("tags") ? JSON.parse(elt.json_metadata).tags : [elt.category], urlImage, elt.url, voted));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected behavior
On steemit.com platform, Posts on feed should show vote counts.
Actual behavior
On steemit.com platform, SteemPlus Feed shows undefined for vote count.
How to reproduce
Technical Analysis
feedplus.js
line 167
Change net_votes to active_votes.length
The text was updated successfully, but these errors were encountered: