X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/cee21ba9cc7f7e89724a98ee2507d520874435a6..4c075939a17f851cb75cd75c9b35aa65105d00df:/projects/stargazer/plugins/store/files/file_store.cpp diff --git a/projects/stargazer/plugins/store/files/file_store.cpp b/projects/stargazer/plugins/store/files/file_store.cpp index d5cfefab..098f59b4 100644 --- a/projects/stargazer/plugins/store/files/file_store.cpp +++ b/projects/stargazer/plugins/store/files/file_store.cpp @@ -1471,10 +1471,16 @@ if (conf.ReadString("ChangePolicy", &str, "allow") < 0) else td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(str); -if (conf.ReadString("ChangePolicyTimeout", &str, "1970-01-01 00:00:00") < 0) +if (conf.ReadString("ChangePolicyTimeout", &str, "0") < 0) +{ td->tariffConf.changePolicyTimeout = 0; +} else - td->tariffConf.changePolicyTimeout = readTime(str); +{ + int64_t policyTime = 0; + if (str2x(str, policyTime) == 0) + td->tariffConf.changePolicyTimeout = (time_t)policyTime; +} return 0; } //-----------------------------------------------------------------------------