mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-21 14:06:31 +01:00
bugfix deleting unknown tag / WIP locking
- bugfix: unable to delete unknown tag by right clicking - work in progress: lock tag inventory, by rejecting new tags
This commit is contained in:
@@ -471,6 +471,9 @@ void init_web() {
|
||||
if (request->hasParam("preview", true)) {
|
||||
config.preview = static_cast<uint8_t>(request->getParam("preview", true)->value().toInt());
|
||||
}
|
||||
if (request->hasParam("lock", true)) {
|
||||
config.lock = static_cast<uint8_t>(request->getParam("lock", true)->value().toInt());
|
||||
}
|
||||
if (request->hasParam("sleeptime1", true)) {
|
||||
config.sleepTime1 = static_cast<uint8_t>(request->getParam("sleeptime1", true)->value().toInt());
|
||||
config.sleepTime2 = static_cast<uint8_t>(request->getParam("sleeptime2", true)->value().toInt());
|
||||
|
||||
Reference in New Issue
Block a user