Skip to content
This repository has been archived by the owner on Dec 2, 2021. It is now read-only.

Commit

Permalink
fixed wrong index
Browse files Browse the repository at this point in the history
  • Loading branch information
rahgurung committed Apr 14, 2020
1 parent c79fd37 commit a380d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ bot.on('message', (msg) => {
if (parseInt(statedata['deltarecovered']) > 1) {
data += '<i> (' + statedata['deltarecovered'] + ' new recoveries)</i>'
} else {
data += '<i> (' + statedata['deltaconfirmed'] + ' new recovery)</i>'
data += '<i> (' + statedata['deltarecovered'] + ' new recovery)</i>'
}
}
data += "\nDeaths: " + statedata['deaths']
Expand Down

0 comments on commit a380d66

Please sign in to comment.