Add "quick_reply_shortcut_count_max" option.

This commit is contained in:
levlam 2024-03-04 13:27:23 +03:00
parent e2eba91ee2
commit f7b6f81c52
3 changed files with 7 additions and 1 deletions

View File

@ -1980,6 +1980,11 @@ void ConfigManager::process_app_config(tl_object_ptr<telegram_api::JSONValue> &c
G()->set_option_integer(key, get_json_value_int(std::move(key_value->value_), key));
continue;
}
if (key == "quick_replies_limit") {
G()->set_option_integer("quick_reply_shortcut_count_max",
get_json_value_int(std::move(key_value->value_), key));
continue;
}
new_values.push_back(std::move(key_value));
}

View File

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

View File

@ -138,6 +138,7 @@ OptionManager::OptionManager(Td *td)
set_default_integer_option("group_emoji_status_level_min", is_test_dc ? 2 : 8);
set_default_integer_option("group_wallpaper_level_min", is_test_dc ? 3 : 9);
set_default_integer_option("group_custom_wallpaper_level_min", is_test_dc ? 4 : 10);
set_default_integer_option("quick_reply_shortcut_count_max", is_test_dc ? 10 : 100);
if (options.isset("my_phone_number") || !options.isset("my_id")) {
update_premium_options();