Skip to content

Commit

Permalink
fix: get view entries params
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Jul 15, 2024
1 parent 6ccc61c commit afd47d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function getEntriesParams({
if (id === FEED_COLLECTION_LIST) {
params.collected = true
} else {
params.feedIdList = `${id}`.split(",")
params.feedIdList = id ? `${id}`.split(",") : undefined
}
} else if (level === levels.feed) {
params.feedId = `${id}`
Expand Down

0 comments on commit afd47d9

Please sign in to comment.