* * @param {object} fetcher the fetcher associated with the calendar * @param {string} identifier the identifier of the calendar
(fetcher, identifier)
| 90 | * @param {string} identifier the identifier of the calendar |
| 91 | */ |
| 92 | broadcastEvents (fetcher, identifier) { |
| 93 | const checksum = zlib.crc32(Buffer.from(JSON.stringify(fetcher.events), "utf8")); |
| 94 | this.sendSocketNotification("CALENDAR_EVENTS", { |
| 95 | id: identifier, |
| 96 | url: fetcher.url, |
| 97 | events: fetcher.events, |
| 98 | checksum: checksum |
| 99 | }); |
| 100 | } |
| 101 | }); |
nothing calls this directly
no test coverage detected