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
child_removed fires twice, actually three times,
it fires at the same time when it item is added, and then twice when is deleted, super weird.
I wonder why nobody mentions this....
child_removed fires twice, actually three times,
it fires at the same time when it item is added, and then twice when is deleted, super weird.
I wonder why nobody mentions this....
await clientt.OnAsync("users", added: async (s, args, d) => { this.BeginInvoke((Action)delegate () { msgbox(args.Path); }); }, removed: async (s, args, d) => { this.BeginInvoke((Action)delegate () { msgbox(args.Path); }); });
removed event: fires at the same time with added, and then when it is removed it fires twice at the same time, super weird....
The text was updated successfully, but these errors were encountered: