mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix issue where flag was set wrong
This commit is contained in:
parent
593bac0408
commit
d4710a899b
1 changed files with 1 additions and 1 deletions
|
|
@ -305,7 +305,7 @@ export const processFetchContentJob = async (
|
|||
|
||||
const savedDate = savedAt ? new Date(savedAt) : new Date()
|
||||
const { finalUrl, title, content, contentType } = fetchResult
|
||||
if (content && process.env['SKIP_UPLOAD_ORIGINAL'] === 'true') {
|
||||
if (content && process.env['SKIP_UPLOAD_ORIGINAL'] !== 'true') {
|
||||
await uploadOriginalContent(users, content, savedDate.getTime())
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue