Compare commits

..

2 Commits

2
app.js
View File

@@ -50,7 +50,7 @@ app.use(handleError);
// Saat pesan diterima // Saat pesan diterima
mqttClient.on('message', (topic, message) => { mqttClient.on('message', (topic, message) => {
console.log(`Received message on topic "${topic}":`, message.toString()); // console.log(`Received message on topic "${topic}":`, message.toString());
notifikasiWaService.onNotification(topic, message); notifikasiWaService.onNotification(topic, message);
notifikasiWaService.onNotificationReminder(topic, message); notifikasiWaService.onNotificationReminder(topic, message);
}); });