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.
2 parents 424689c + c3c0c07 commit ac5afbaCopy full SHA for ac5afba
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