Avoid error if item is modified before collections pane is loaded
E.g., during Extra field migration at startup
This commit is contained in:
parent
9446f7f583
commit
3b1cb2b9c2
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@
|
|||
|
||||
notify(action, type) {
|
||||
if (type == 'item' && action == 'modify') {
|
||||
if (this.collectionTreeRow.isFeedsOrFeed()) {
|
||||
if (this.collectionTreeRow && this.collectionTreeRow.isFeedsOrFeed()) {
|
||||
this.updateReadLabel();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue