UNPKG

cyber-fca

Version:

A Facebook chat api for messenger bots.

23 lines (21 loc) 588 B
"use strict"; /* @NethWs3Dev */ // @NethWs3Dev module.exports = function (defaultFuncs, api, ctx){ return function stopListenMqtt() { if (!ctx.mqttClient) { throw new Error("Not connected to MQTT"); } console.log("stopListenMqtt", "Stopping..."); ctx.mqttClient.unsubscribe("/webrtc"); ctx.mqttClient.unsubscribe("/rtc_multi"); ctx.mqttClient.unsubscribe("/onevc"); ctx.mqttClient.publish("/browser_close", "{}"); ctx.mqttClient.end(false, (...data) => { console.log("stopListenMqtt", "Stopped"); ctx.mqttClient = null; }); } };