Skip to content

Commit

Permalink
Merge pull request #243 from omnivore-app/fix/download-content
Browse files Browse the repository at this point in the history
fix: some highlighted markdown content not synced
  • Loading branch information
sywhb committed Jul 16, 2024
2 parents 69a8621 + bc84e26 commit 582b217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const fetchContentForItems = async (
item.content = await Promise.race([
downloadFromUrl(c.downloadUrl),
new Promise<string>(
(_, reject) => setTimeout(() => reject('Timeout'), 60_000), // 60 seconds
(_, reject) => setTimeout(() => reject('Timeout'), 600_000), // 10 minutes
),
])
}),
Expand Down

0 comments on commit 582b217

Please sign in to comment.