Add "subscription_star_count_max" option.
This commit is contained in:
parent
c37ec40977
commit
6b4389bb43
@ -2058,6 +2058,10 @@ void ConfigManager::process_app_config(tl_object_ptr<telegram_api::JSONValue> &c
|
|||||||
G()->set_option_integer("paid_reaction_star_count_max", get_json_value_int(std::move(key_value->value_), key));
|
G()->set_option_integer("paid_reaction_star_count_max", get_json_value_int(std::move(key_value->value_), key));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (key == "stars_subscription_amount_max") {
|
||||||
|
G()->set_option_integer("subscription_star_count_max", get_json_value_int(std::move(key_value->value_), key));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
new_values.push_back(std::move(key_value));
|
new_values.push_back(std::move(key_value));
|
||||||
}
|
}
|
||||||
|
@ -85,7 +85,7 @@ class ConfigManager final : public NetQueryCallback {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
struct AppConfig {
|
struct AppConfig {
|
||||||
static constexpr int32 CURRENT_VERSION = 57;
|
static constexpr int32 CURRENT_VERSION = 58;
|
||||||
int32 version_ = 0;
|
int32 version_ = 0;
|
||||||
int32 hash_ = 0;
|
int32 hash_ = 0;
|
||||||
telegram_api::object_ptr<telegram_api::JSONValue> config_;
|
telegram_api::object_ptr<telegram_api::JSONValue> config_;
|
||||||
|
@ -157,6 +157,7 @@ OptionManager::OptionManager(Td *td)
|
|||||||
set_default_integer_option("paid_media_message_star_count_max", 10000);
|
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("bot_media_preview_count_max", 12);
|
||||||
set_default_integer_option("paid_reaction_star_count_max", 2500);
|
set_default_integer_option("paid_reaction_star_count_max", 2500);
|
||||||
|
set_default_integer_option("subscription_star_count_max", 2500);
|
||||||
|
|
||||||
if (options.isset("my_phone_number") || !options.isset("my_id")) {
|
if (options.isset("my_phone_number") || !options.isset("my_id")) {
|
||||||
update_premium_options();
|
update_premium_options();
|
||||||
|
Loading…
Reference in New Issue
Block a user