Remove explicit CrashHandler template param

No longer necessary since we call new CrashHandler
This commit is contained in:
Rasmus Karlsson 2024-01-16 21:11:40 +01:00
parent 44503d2e63
commit 78c028d4e0

View file

@ -120,7 +120,7 @@ Application::Application(Settings &_settings, const Paths &paths,
, toasts(&this->emplace<Toasts>()) , toasts(&this->emplace<Toasts>())
, imageUploader(&this->emplace<ImageUploader>()) , imageUploader(&this->emplace<ImageUploader>())
, seventvAPI(&this->emplace<SeventvAPI>()) , seventvAPI(&this->emplace<SeventvAPI>())
, crashHandler(&this->emplace<CrashHandler>(new CrashHandler(paths))) , crashHandler(&this->emplace(new CrashHandler(paths)))
, commands(&this->emplace<CommandController>()) , commands(&this->emplace<CommandController>())
, notifications(&this->emplace<NotificationController>()) , notifications(&this->emplace<NotificationController>())