Fix notification issue

This commit is contained in:
yflory 2025-10-16 14:26:21 +02:00
parent 88d2797528
commit 07f8b2d106
2 changed files with 3 additions and 1 deletions

View File

@ -849,6 +849,8 @@ const factory = (Messaging, Hash, Util, Crypto, Block) => {
if (!teamId) { return void cb(false); }
var team = ctx.store.proxy.teams[teamId];
if (!team) { return void cb(false); }
content.teamName = team.metadata && team.metadata.name;
cb(false);
};

File diff suppressed because one or more lines are too long