Skip to content

Commit

Permalink
fix: check view
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban committed Jan 20, 2025
1 parent 2cd1b5d commit f52338c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/mobile/src/store/entry/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class EntryActions {
}

const subscription = getSubscription(feedId)
if (subscription?.view) {
if (typeof subscription?.view === "number") {
draft.entryIdByView[subscription.view].add(entryId)
}
if (subscription?.category) {
Expand Down

0 comments on commit f52338c

Please sign in to comment.