X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/be4b0c4a82a46b9f69d4ee403fc397dc197626dc..b57ccc81342188872041561b0336716ca7d2d8aa:/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; } //-----------------------------------------------------------------------------