Add "paid_reaction_star_count_max" option.

This commit is contained in:
levlam 2024-07-26 17:23:58 +03:00
parent 4918ea4314
commit 697c118c0d
3 changed files with 6 additions and 1 deletions

View File

@ -2054,6 +2054,10 @@ void ConfigManager::process_app_config(tl_object_ptr<telegram_api::JSONValue> &c
G()->set_option_boolean("can_gift_stars", get_json_value_bool(std::move(key_value->value_), key));
continue;
}
if (key == "stars_paid_reaction_amount_max") {
G()->set_option_integer("paid_reaction_star_count_max", get_json_value_int(std::move(key_value->value_), key));
continue;
}
new_values.push_back(std::move(key_value));
}

View File

@ -85,7 +85,7 @@ class ConfigManager final : public NetQueryCallback {
private:
struct AppConfig {
static constexpr int32 CURRENT_VERSION = 56;
static constexpr int32 CURRENT_VERSION = 57;
int32 version_ = 0;
int32 hash_ = 0;
telegram_api::object_ptr<telegram_api::JSONValue> config_;

View File

@ -156,6 +156,7 @@ OptionManager::OptionManager(Td *td)
set_default_integer_option("story_link_area_count_max", 3);
set_default_integer_option("paid_media_message_star_count_max", 10000);
set_default_integer_option("bot_media_preview_count_max", 12);
set_default_integer_option("paid_reaction_star_count_max", 2500);
if (options.isset("my_phone_number") || !options.isset("my_id")) {
update_premium_options();