summaryrefslogtreecommitdiff
path: root/daemon/sensorPlugins/stepCounter.cpp
diff options
context:
space:
mode:
authorArseniy-Movshev <dodoradio@outlook.com>2023-05-28 14:08:57 +0100
committerArseniy-Movshev <dodoradio@outlook.com>2023-05-28 15:43:22 +0100
commite228f65119bef5ba2e0a26c0f9c53d5c3f131463 (patch)
treecbe6d40a2e4e5b23f1022bc3180d55712c207990 /daemon/sensorPlugins/stepCounter.cpp
parent521c01825badf77c65a1389109e2f4967cde154d (diff)
Allow sensorlogd to set up its directory structure
This code sets up all the paths used by sensorlogd before it is started
Diffstat (limited to '')
-rw-r--r--daemon/sensorPlugins/stepCounter.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/daemon/sensorPlugins/stepCounter.cpp b/daemon/sensorPlugins/stepCounter.cpp
index 8bfed03..fe8370c 100644
--- a/daemon/sensorPlugins/stepCounter.cpp
+++ b/daemon/sensorPlugins/stepCounter.cpp
@@ -33,6 +33,8 @@ StepCounterPlugin::StepCounterPlugin(QObject *parent, int initInterval) :
QDateTime currDateTime = QDateTime::currentDateTime();
+ setupFilePath(sensorPathPrefix);
+
if (dayFileExists(sensorPathPrefix)) {
QStringList lastLineData = fileGetPrevRecord(sensorPathPrefix);
lastRecordTime = QDateTime::fromSecsSinceEpoch(lastLineData[0].toInt());