FireSharp icon indicating copy to clipboard operation
FireSharp copied to clipboard

child_removed doesn't work almost a year, maybe even more

Open unknowndev00 opened this issue 4 years ago • 0 comments

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....

unknowndev00 avatar May 24 '21 16:05 unknowndev00