feat: add high priority Android notifications and set chat input field line limits

This commit is contained in:
Van Leemput Dayron
2025-12-04 15:05:04 +01:00
parent 9f2bfcaa55
commit 9b11836409
2 changed files with 8 additions and 1 deletions

View File

@@ -44,6 +44,12 @@ async function sendNotificationToUsers(userIds, title, body, excludeUserId, data
click_action: "FLUTTER_NOTIFICATION_CLICK",
...data
},
android: {
priority: "high",
notification: {
channelId: "high_importance_channel",
}
}
};
const response = await admin.messaging().sendEachForMulticast(message);