mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix linting
This commit is contained in:
parent
7aa76b70fe
commit
7bb6602454
1 changed files with 2 additions and 2 deletions
|
|
@ -32,8 +32,8 @@ export const refreshAllFeeds = async (
|
|||
['RSS', 'ACTIVE', 'following']
|
||||
)) as RssSubscriptionGroup[]
|
||||
|
||||
for (let group of subscriptionGroups) {
|
||||
let jobid = `refresh-feed_${stringToHash(group.url)}_${stringToHash(
|
||||
for (const group of subscriptionGroups) {
|
||||
const jobid = `refresh-feed_${stringToHash(group.url)}_${stringToHash(
|
||||
JSON.stringify(group.userIds.sort())
|
||||
)}`
|
||||
const payload = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue