Fix bug in restart service (#47)

This commit is contained in:
Rico Tiongson 2019-02-08 16:58:27 +08:00 committed by GitHub
parent 3a0e1361c9
commit 0b3b3238af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,8 +28,8 @@ namespace comfortable_swipe::service
*/ */
void restart() void restart()
{ {
comfortable_swipe::service::start();
comfortable_swipe::service::stop(); comfortable_swipe::service::stop();
comfortable_swipe::service::start();
} }
} }