Облачные сообщения Firebase. Каждый then () должен возвращать значение или выдавать обещание / всегда возвращать. - PullRequest
0 голосов
/ 14 сентября 2018

Я пишу облачную функцию для firebase для моего приложения для Android. Я не могу решить эту ошибку. Я полный новичок.

29: 73 error Каждое then () должно возвращать значение или выдавать обещание / всегда возвращать

const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
exports.sendNotification = functions.database.ref('/comment')
 .onWrite((change, context) => {

     // get user ids
     const reciever_id = context.params.reciever_id;
     const sender_id = context.params.sender_id;
     const comment = context.params.comment;
     const object_id = context.params.object_id;
     const objecttype = context.params.objecttype;

     //get the token of reciever 
     return admin.database().ref("/users/" + reciever_id).once('value').then(snap => {
         const token = snap.child("token").val();
         // Create a payload
         var payload = {
             data: {
                 data_type: "direct_message",
                 title: "Comment from" + sender_id,
                 comment: comment,
                 object_id: object_id,
                 objecttype: objecttype,
             }
         };

         // Sent To device with token Id : THIS IS LINE 29
         return admin.messaging().sendToDevice(token, payload).then(response => {
             console.log("Successfully sent message:", response);})
            .catch(error => {console.log("Error:", error); });

});  // token

}); // onWrite

1 Ответ

0 голосов
/ 14 сентября 2018

ЭТО работало, я только что изменил

    // Sent To device with token Id
         return admin.messaging().sendToDevice(token, payload).then(result => {
            return console.log("Successfully sent message:", result);
         })
...