We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5b0612 commit c3c0c07Copy full SHA for c3c0c07
src/app/components/subscription-edit-form/subscription-edit-form.ts
@@ -76,8 +76,8 @@ export class SubscriptionEditForm implements OnInit {
76
description: feed.description,
77
link: feed.link,
78
settings: {
79
- enabled: feed.settings.enabled,
80
- loadFullText: feed.settings.loadFullText,
+ enabled: feed.settings?.enabled || false,
+ loadFullText: feed.settings?.loadFullText || false,
81
},
82
})
83
}
0 commit comments