mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
don't try to mark entries that are not markable (#1303)
This commit is contained in:
@@ -64,7 +64,7 @@ export const markEntry = createAppAsyncThunk(
|
||||
})
|
||||
},
|
||||
{
|
||||
condition: arg => arg.entry.read !== arg.read,
|
||||
condition: arg => arg.entry.markable && arg.entry.read !== arg.read,
|
||||
}
|
||||
)
|
||||
export const markMultipleEntries = createAppAsyncThunk(
|
||||
|
||||
Reference in New Issue
Block a user