Skip to content

Commit

Permalink
fixed return val
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Ger committed Oct 15, 2018
1 parent c75772f commit cb8ae30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mqtt_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ bool ICACHE_FLASH_ATTR MQTT_server_deleteClientCon(MQTT_ClientCon * mqttClientCo
MQTT_INFO("MQTT: DeleteClientCon\r\n");

if (mqttClientCon == NULL)
return;
return true;

os_timer_disarm(&mqttClientCon->mqttTimer);

Expand Down

0 comments on commit cb8ae30

Please sign in to comment.