Fixed gamemode module segfaulting when disconnecting monitor

This commit is contained in:
Erik Reider 2022-10-20 12:38:52 +02:00
parent 527017baca
commit 1ceaff27c2
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ Gamemode::Gamemode(const std::string& id, const Json::Value& config)
}
Gamemode::~Gamemode() {
if (gamemode_proxy) gamemode_proxy->unreference();
if (gamemode_proxy) gamemode_proxy.reset();
if (gamemodeWatcher_id > 0) {
Gio::DBus::unwatch_name(gamemodeWatcher_id);
gamemodeWatcher_id = 0;