fix a typo

This commit is contained in:
Hongbo Wu
2024-02-23 14:21:34 +08:00
parent f4b6e470f2
commit df0bda9cb2

View File

@ -281,7 +281,7 @@ const createTask = async (
const feedContent = item.content || item.contentSnippet || item.summary
if (
fetchContentType === FetchContentType.Never ||
(fetchContentType === FetchContentType.WhenEmpty && !feedContent)
(fetchContentType === FetchContentType.WhenEmpty && feedContent)
) {
return createItemWithFeedContent(userId, feedUrl, item, folder, feedContent)
}