Fix timer being locale dependent for decimals

`/timer .1 echo hi` now works in all locales.
This commit is contained in:
Patrick Griffis 2021-11-12 12:44:09 -06:00
parent f93b13a6a3
commit 8443755772
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ timer_cb (char *word[], char *word_eol[], void *userdata)
offset += 2;
}
timeout = atof (word[2 + offset]);
timeout = g_ascii_strtod (word[2 + offset], NULL);
command = word_eol[3 + offset];
if (timeout < 0.1 || timeout * 1000 > INT_MAX || !command[0])