Fix wrist feed not updating while searching feed

This commit is contained in:
Natsumi
2022-03-29 21:34:57 +13:00
parent 6db60ba985
commit 7cb72b1ff0

View File

@@ -7560,6 +7560,7 @@ speechSynthesis.getVoices();
$app.methods.addFeed = function (feed) {
this.queueFeedNoty(feed);
this.feedSessionTable.push(feed);
this.updateSharedFeed(false);
if (
this.feedTable.filter.length > 0 &&
!this.feedTable.filter.includes(feed.type)
@@ -7577,7 +7578,6 @@ speechSynthesis.getVoices();
}
this.feedTable.data.push(feed);
this.sweepFeed();
this.updateSharedFeed(false);
this.notifyMenu('feed');
};