progrssive
progrssive copied to clipboard
Application error: a client-side exception has occurred
After adding unvalid RSS i have error


BTW, Thank you for this great PWA
Hey, glad you like it! I've added a bit more error handling to the OPML importer - would you mind checking it works now (feel free to reopen if it doesn't)?
Did not help. I think probles is here ./services/entry.ts
export const getEntrySummary = (entry: Entry) => {
if (!entry) return;
const detail = entry.summary || entry.content;
const content = detail.content;
return sanitizeContent(content, ['iframe']);
}
change to
export const getEntrySummary = (entry: Entry) => {
if (!entry) return;
const detail = entry.summary || entry.content;
const content = detail?.content || '';
return sanitizeContent(content, ['iframe']);
}
I didn't test. If you make an edit, I can test on a not filled RSS-channel