mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix logic on the digest eligibility test
This commit is contained in:
parent
036889eadc
commit
7e5b0864b3
1 changed files with 1 additions and 1 deletions
|
|
@ -196,5 +196,5 @@ export const userDigestEligible = async (uid: string): Promise<boolean> => {
|
|||
uid
|
||||
)
|
||||
|
||||
return subscriptionsCount > 2 && libraryItemsCount > 10
|
||||
return subscriptionsCount >= 2 && libraryItemsCount >= 10
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue