I found the issue when using Easy Slug for user registrations. The generateUniqueSlug method fails in the following scenario.
if slug for user1 is abc-xyz
if slug is generated for new user then new slug will be generated as abc-xyz-2
Now if the record with fist slug abc-xyz is modified OR deleted then the generateUniqueSlug method fails to generate a unique slug i.e. abc-xyz-2 is generated as new slug
I found the issue when using Easy Slug for user registrations. The generateUniqueSlug method fails in the following scenario.
if slug for user1 is abc-xyz if slug is generated for new user then new slug will be generated as abc-xyz-2
Now if the record with fist slug abc-xyz is modified OR deleted then the generateUniqueSlug method fails to generate a unique slug i.e. abc-xyz-2 is generated as new slug