diff --git a/openedx/core/djangoapps/discussions/serializers.py b/openedx/core/djangoapps/discussions/serializers.py index 814e853ba867..874f5e62d237 100644 --- a/openedx/core/djangoapps/discussions/serializers.py +++ b/openedx/core/djangoapps/discussions/serializers.py @@ -295,7 +295,7 @@ def _update_plugin_configuration( plugin_configuration = validated_data.pop('plugin_configuration', {}) updated_provider_type = validated_data.get('provider_type') or instance.provider_type - if updated_provider_type == Provider.LEGACY: + if updated_provider_type in [Provider.LEGACY, Provider.OPEN_EDX]: legacy_settings = LegacySettingsSerializer( self._get_course(), context={