You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently we changed the storage of post IDs for wpNoPostDuplicates from a Maybe IntSet that is stored in the WordPress b data type to Maybe (MVar (Maybe IntSet)). This is much more complex and probably a little confusing. Maybe we could try making a data type just for storing post IDs that making more explicit what the Maybes mean. So, instead of Maybe we could make something like data PostDuplicatesTracker = NotTracking | Tracking IntSet. Then we would have Maybe PostDuplicatesTracker... or something.
The text was updated successfully, but these errors were encountered:
Recently we changed the storage of post IDs for
wpNoPostDuplicates
from aMaybe IntSet
that is stored in theWordPress b
data type toMaybe (MVar (Maybe IntSet))
. This is much more complex and probably a little confusing. Maybe we could try making a data type just for storing post IDs that making more explicit what theMaybe
s mean. So, instead ofMaybe
we could make something likedata PostDuplicatesTracker = NotTracking | Tracking IntSet
. Then we would haveMaybe PostDuplicatesTracker
... or something.The text was updated successfully, but these errors were encountered: