X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/4c075939a17f851cb75cd75c9b35aa65105d00df..5faa80c629ffd05cf80dd29e8a1834057805829c:/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 098f59b4..6f316072 100644 --- a/projects/stargazer/plugins/store/files/file_store.cpp +++ b/projects/stargazer/plugins/store/files/file_store.cpp @@ -1471,16 +1471,7 @@ if (conf.ReadString("ChangePolicy", &str, "allow") < 0) else td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(str); -if (conf.ReadString("ChangePolicyTimeout", &str, "0") < 0) -{ - td->tariffConf.changePolicyTimeout = 0; -} -else -{ - int64_t policyTime = 0; - if (str2x(str, policyTime) == 0) - td->tariffConf.changePolicyTimeout = (time_t)policyTime; -} +conf.ReadTime("ChangePolicyTimeout", &td->tariffConf.changePolicyTimeout, 0); return 0; } //-----------------------------------------------------------------------------