Added check for left over update installation behavior settings

This commit is contained in:
Thorsten Sommer 2025-08-26 20:04:39 +02:00
parent 330fbe10b5
commit e0de649474
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -142,6 +142,10 @@ public static partial class PluginFactory
if(ManagedConfiguration.IsConfigurationLeftOver<DataApp, UpdateInterval>(x => x.App, x => x.UpdateInterval, AVAILABLE_PLUGINS))
wasConfigurationChanged = true;
// Check for update installation behavior:
if(ManagedConfiguration.IsConfigurationLeftOver<DataApp, UpdateInstallation>(x => x.App, x => x.UpdateInstallation, AVAILABLE_PLUGINS))
wasConfigurationChanged = true;
// Check for users allowed to added providers:
if(ManagedConfiguration.IsConfigurationLeftOver<DataApp, bool>(x => x.App, x => x.AllowUserToAddProvider, AVAILABLE_PLUGINS))
wasConfigurationChanged = true;