ontje / node-red-contrib-countdown

A simple countdown node
MIT License
5 stars 13 forks source link

It is impossible to set the contdown value to 1 second #18

Open Nesterovich2797 opened 10 months ago

Nesterovich2797 commented 10 months ago

In order to fix this, it is enough to change the condition:

116 line
if (isNumber(msg.payload) && msg.payload > 1) { change to if (isNumber(msg.payload) && msg.payload >= 1) {