mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix init
This commit is contained in:
parent
20df5c6212
commit
447bba23ba
1 changed files with 2 additions and 2 deletions
|
|
@ -26,9 +26,9 @@ const createRSSRefreshFeedQueue = (): Queue | undefined => {
|
|||
return new Queue('rssRefreshFeed', { connection })
|
||||
}
|
||||
|
||||
export const addRefreshFeedJob = async (jobid: string, payload: any) => {
|
||||
const rssRefreshFeedJobQueue = createRSSRefreshFeedQueue()
|
||||
const rssRefreshFeedJobQueue = createRSSRefreshFeedQueue()
|
||||
|
||||
export const addRefreshFeedJob = async (jobid: string, payload: any) => {
|
||||
if (!rssRefreshFeedJobQueue) {
|
||||
return false
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue