forked from Archives/Athou_commafeed
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