We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 234604a commit 7c7c95dCopy full SHA for 7c7c95d
apps/sim/lib/webhooks/polling/rss.ts
@@ -292,7 +292,10 @@ async function processRssItems(
292
293
for (const item of items) {
294
try {
295
- const itemGuid = item.guid || item.link || `${item.title}-${item.pubDate}`
+ const itemGuid =
296
+ item.guid ||
297
+ item.link ||
298
+ (item.title && item.pubDate ? `${item.title}-${item.pubDate}` : '')
299
300
await pollingIdempotency.executeWithIdempotency(
301
'rss',
0 commit comments