KeKs0r / mqtt-react

React container for MQTT
47 stars 31 forks source link

unsubscribe not work #11

Open lotusfox777 opened 5 years ago

lotusfox777 commented 5 years ago

Hi, I did unsubscribe mqtt in the componentWillUnmount() { const { mqtt } = this.props; mqtt.unsubscribe(mqttTopic); } , but it does not work. It seems like not unsubscribe the topic. when I re-render component, the messageIdToTopic increase. it caused the mqtt.publish not work. image anyone can give suggestion?