war kein bug

This commit is contained in:
devfix 2019-05-09 13:37:15 +02:00
parent f403b407cc
commit 4364b39f63
8 changed files with 88 additions and 12 deletions

View file

@ -125,7 +125,15 @@ void ViewMonitor::worker()
}
catch(...)
{
drv.reconnect();
try
{
drv.reconnect();
}
catch(...)
{
B15F::abort("yoho meine dudes");
return;
}
}
}
}