Unnecessary event cancellations #2
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When we check for
isLocationIgnored, we not just simply return from the listener, but also cancel the event.We should remove the event cancellation and only do
returnin all of these cases.We need to look for all occurrences of this code:
is fixed :3