From f31d5186c7dc3183392a3a0e3325d3ba1d835040 Mon Sep 17 00:00:00 2001 From: Rico Tiongson Date: Fri, 8 Feb 2019 16:54:41 +0800 Subject: [PATCH] Fix bug in restart service --- src/lib/service/restart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/service/restart.cpp b/src/lib/service/restart.cpp index 67bbaf0..28191c8 100644 --- a/src/lib/service/restart.cpp +++ b/src/lib/service/restart.cpp @@ -28,8 +28,8 @@ namespace comfortable_swipe::service */ void restart() { - comfortable_swipe::service::start(); comfortable_swipe::service::stop(); + comfortable_swipe::service::start(); } }