Avoid digits in option names.

This commit is contained in:
levlam 2024-08-17 20:10:26 +03:00
parent 1a901a0e39
commit 2684d8e4a3
2 changed files with 6 additions and 4 deletions

View File

@ -2064,11 +2064,11 @@ void ConfigManager::process_app_config(tl_object_ptr<telegram_api::JSONValue> &c
continue;
}
if (key == "stars_usd_sell_rate_x1000") {
G()->set_option_integer("usd_to_1000_star_rate", get_json_value_int(std::move(key_value->value_), key));
G()->set_option_integer("usd_to_thousand_star_rate", get_json_value_int(std::move(key_value->value_), key));
continue;
}
if (key == "stars_usd_withdraw_rate_x1000") {
G()->set_option_integer("1000_star_to_usd_rate", get_json_value_int(std::move(key_value->value_), key));
G()->set_option_integer("thousand_star_to_usd_rate", get_json_value_int(std::move(key_value->value_), key));
continue;
}

View File

@ -158,8 +158,8 @@ OptionManager::OptionManager(Td *td)
set_default_integer_option("bot_media_preview_count_max", 12);
set_default_integer_option("paid_reaction_star_count_max", 2500);
set_default_integer_option("subscription_star_count_max", 2500);
set_default_integer_option("usd_to_1000_star_rate", 1410);
set_default_integer_option("1000_star_to_usd_rate", 1200);
set_default_integer_option("usd_to_thousand_star_rate", 1410);
set_default_integer_option("thousand_star_to_usd_rate", 1200);
if (options.isset("my_phone_number") || !options.isset("my_id")) {
update_premium_options();
@ -174,6 +174,8 @@ OptionManager::OptionManager(Td *td)
set_option_empty("forum_member_count_min");
set_option_empty("themed_emoji_statuses_sticker_set_id");
set_option_empty("themed_premium_statuses_sticker_set_id");
set_option_empty("usd_to_1000_star_rate");
set_option_empty("1000_star_to_usd_rate");
}
OptionManager::~OptionManager() = default;