@massalabs/gossip-sdk 0.0.2-dev.20260217093203 → 0.0.2-dev.20260217122602

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -102,7 +102,7 @@ export class AnnouncementService {
102
102
  continue;
103
103
  // ensure the announcement is not null
104
104
  if (discussion.sendAnnouncement === null)
105
- return;
105
+ continue;
106
106
  const { announcement_bytes, when_to_send } = discussion.sendAnnouncement;
107
107
  if (announcement_bytes.length === 0) {
108
108
  log.warn('skipping empty announcement bytes', {
@@ -113,7 +113,7 @@ export class AnnouncementService {
113
113
  sendAnnouncement: null,
114
114
  updatedAt: new Date(),
115
115
  });
116
- return;
116
+ continue;
117
117
  }
118
118
  if (when_to_send.getTime() > now) {
119
119
  log.debug('skipping announcement, not yet time to send', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@massalabs/gossip-sdk",
3
- "version": "0.0.2-dev.20260217093203",
3
+ "version": "0.0.2-dev.20260217122602",
4
4
  "description": "Gossip SDK for automation, chatbot, and integration use cases",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",