fix: prevent miss spelled scale arg

pull/313/head
amio 2019-10-04 17:41:16 +08:00
rodzic ce08e2308d
commit 4996986ef9
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -28,7 +28,7 @@ export default function (req, res, options: ServeBadgeOptions) {
style: query.style || process.env.BADGE_STYLE,
icon: _icon.src,
iconWidth: iconWidth || _icon.width,
scale: scale && parseInt(scale, 10),
scale: scale && parseInt(scale, 10) || 1,
})
const staleControl = `stale-while-revalidate=604800, stale-if-error=604800`