diff --git a/Build/MQTTnet.nuspec b/Build/MQTTnet.nuspec
index 6febc5c..da658a7 100644
--- a/Build/MQTTnet.nuspec
+++ b/Build/MQTTnet.nuspec
@@ -11,6 +11,7 @@
false
MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker).
* [Server] Added new method which exposes all retained messages.
+* [Server] Removed (wrong) setter from the server options interface.
Copyright Christian Kratky 2016-2018
MQTT Message Queue Telemetry Transport MQTTClient MQTTServer Server MQTTBroker Broker NETStandard IoT InternetOfThings Messaging Hardware Arduino Sensor Actuator M2M ESP Smart Home Cities Automation Xamarin
diff --git a/Source/MQTTnet/Server/IMqttServerOptions.cs b/Source/MQTTnet/Server/IMqttServerOptions.cs
index 2ae4c9f..f9334fd 100644
--- a/Source/MQTTnet/Server/IMqttServerOptions.cs
+++ b/Source/MQTTnet/Server/IMqttServerOptions.cs
@@ -14,7 +14,7 @@ namespace MQTTnet.Server
Action ConnectionValidator { get; }
Action SubscriptionInterceptor { get; }
Action ApplicationMessageInterceptor { get; }
- Action ClientMessageQueueInterceptor { get; set; }
+ Action ClientMessageQueueInterceptor { get; }
MqttServerTcpEndpointOptions DefaultEndpointOptions { get; }
MqttServerTlsTcpEndpointOptions TlsEndpointOptions { get; }