diff --git a/src/ncfuncs.cpp b/src/ncfuncs.cpp index 0fd5721..054ce3f 100644 --- a/src/ncfuncs.cpp +++ b/src/ncfuncs.cpp @@ -91,6 +91,7 @@ std::tuple NCFuncs::Refdate(const MString& refdate) auto ci = words.begin(); if(ci != words.end()) { + if(*ci == "minutes") step = 60; if(*ci == "hours") step = 3600; if(*ci == "days") step = 3600 * 24; ci++;