Skip to content

Commit

Permalink
Merge pull request #3074 from MirServer/Fix-MirRunner-stop
Browse files Browse the repository at this point in the history
Fix MirRunner::stop()
  • Loading branch information
mattkae authored Oct 12, 2023
2 parents 7aa25d2 + 4ec7996 commit effa154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/miral/runner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ void miral::MirRunner::stop()

if (auto const server = self->weak_server.lock())
{
server->stop();
server->the_main_loop()->enqueue(this, [server] { server->stop(); });
}
}

Expand Down

0 comments on commit effa154

Please sign in to comment.