Fix users count for chrome-web-store badge

pull/7/head
simov 2018-07-15 17:14:44 +03:00
rodzic 0b8517d126
commit 61eb055ea7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -27,7 +27,7 @@ module.exports = async function (method, ...args) {
case 'users':
return {
subject: 'users',
status: millify(parseInt(meta.users.replace(',', ''))),
status: millify(parseInt(meta.users.replace(/,/g, ''))),
color: 'green'
}
case 'price':