From 0b3b3238affc0ec691d1a34fa8d326cd4eebe823 Mon Sep 17 00:00:00 2001 From: Rico Tiongson Date: Fri, 8 Feb 2019 16:58:27 +0800 Subject: [PATCH] Fix bug in restart service (#47) --- 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(); } }