mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Update src/RunGui.cpp
Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
parent
76acef0f20
commit
4e37e833ba
1 changed files with 3 additions and 1 deletions
|
@ -311,7 +311,9 @@ void runGui(QApplication &a, Paths &paths, Settings &settings)
|
|||
pajlada::Settings::SettingManager::gSave();
|
||||
}
|
||||
|
||||
thread.join();
|
||||
if (thread.joinable()) {
|
||||
thread.join();
|
||||
}
|
||||
chatterino::NetworkManager::deinit();
|
||||
|
||||
#ifdef USEWINSDK
|
||||
|
|
Loading…
Reference in a new issue