Browse Source

declaring specific type of variant (recurring field in generic task)

logicp 4 years ago
parent
commit
ecd9f6747b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/client.cpp

+ 2 - 1
src/client.cpp

@@ -306,7 +306,8 @@ void Client::sendTaskEncoded(Scheduler::Task* task) {
               task->getTaskArgumentValue("header")).toUtf8().constData()}),
             builder.CreateString(std::string{std::get<Scheduler::VariantIndex::QSTRING>(
               task->getTaskArgumentValue("user")).toUtf8().constData()}));
-              task->getTaskArgumentValue("recurring");
+            std::get<Scheduler::VariantIndex::INTEGER>(
+              task->getTaskArgumentValue("recurring"));
     builder.Finish(generic_task);
   }