Do not override the channels list if one of the account has enterprise.

Maintain stable and enterprise.

Signed-off-by: Camila Ayres <hello@camilasan.com>
This commit is contained in:
Camila Ayres 2024-10-17 16:51:27 +02:00
Родитель 85a3658414
Коммит 664a13189b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7A4A6121E88E2AD4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -293,7 +293,7 @@ void GeneralSettings::loadMiscSettings()
#if defined(BUILD_UPDATER)
void GeneralSettings::loadUpdateChannelsList() {
ConfigFile cfgFile;
if (_currentUpdateChannelList != cfgFile.validUpdateChannels()) {
if (_currentUpdateChannelList != cfgFile.validUpdateChannels() && !cfgFile.serverHasValidSubscription()) {
_currentUpdateChannelList = cfgFile.validUpdateChannels();
_ui->updateChannel->clear();
_ui->updateChannel->addItems(_currentUpdateChannelList);