我在我的网站上成功设置了FCM,它运行良好 . 我正在使用JavaScript发送通知 . 当我发送基于主题的条件通知时 . 例如

var topic = "('movies' in topics || 'movies' in topics)";
admin.messaging().sendToCondition(topic, payload,options)
    .then(function(err, response) {
      if(err){
          console.log("Error : ", err.results);
      }
      console.log("Successfully sent message:", err);
})

但是当我改变条件时

var topic = "('movies' in topics || 'IND' in topics)";

即使通知已成功发送,客户端也未收到任何通知 .

PS:客户已订阅电影,它完全正常,但没有使用条件 .