Hotfix v. 1.18.1

This commit is contained in:
Kevin Röbert
2020-06-07 21:32:24 +02:00
parent 27af2c8c49
commit ac2d5da41c
5 changed files with 12 additions and 4 deletions

View File

@@ -157,7 +157,7 @@ function setData(key, value) {
storage[key] = value.split(',');
break;
case "logLimit":
storage[key] = Number(value);
storage[key] = Math.max(0, Number(value));
break;
default:
storage[key] = value;