From 267b927a7f0fe9d45a6e99699a4c2e15a8a79087 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Wed, 8 Dec 2021 18:08:08 -0800 Subject: [PATCH] IO-1551 Remove image for notifications. --- server/firebase/firebase-handler.js | 4 ++-- server/sms/receive.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/firebase/firebase-handler.js b/server/firebase/firebase-handler.js index 748ded146..bd192f71e 100644 --- a/server/firebase/firebase-handler.js +++ b/server/firebase/firebase-handler.js @@ -83,9 +83,9 @@ exports.sendNotification = async (req, res) => { .send({ topic: "PRD_PATRICK-messaging", notification: { - title: `ImEX Online Message - +16049992002"`, + title: `ImEX Online Message - +16049992002`, body: "Test Noti.", - imageUrl: "https://thinkimex.com/img/logo512.png", + //imageUrl: "https://thinkimex.com/img/io-fcm.png", }, data: { type: "messaging-inbound", diff --git a/server/sms/receive.js b/server/sms/receive.js index 5725c5007..36d30cb34 100644 --- a/server/sms/receive.js +++ b/server/sms/receive.js @@ -107,7 +107,7 @@ exports.receive = async (req, res) => { notification: { title: `ImEX Online Message - ${data.phone_num}`, body: message.image_path ? `Image ${message.text}` : message.text, - imageUrl: "https://thinkimex.com/img/logo512.png", + //imageUrl: "https://thinkimex.com/img/io-fcm.png", }, data, });