Fixed interaction of T and NL HTTP API commands (#1214)

This commit is contained in:
cschwinne
2020-10-02 12:30:17 +02:00
parent bf9360f374
commit 3107943af8
6 changed files with 21 additions and 17 deletions

View File

@@ -29,7 +29,7 @@ void WLED::reset()
bool oappendi(int i)
{
char s[11];
sprintf(s, "%ld", i);
sprintf(s, "%d", i);
return oappend(s);
}