We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 788eab3 commit b5d16c9Copy full SHA for b5d16c9
ReactiveUI.Platforms/Cocoa/CommonReactiveSource.cs
@@ -284,9 +284,10 @@ void resetupAll(IReadOnlyList<TSectionInfo> newSectionInfo)
284
.Changed
285
.Select(timestamped)
286
.Buffer(TimeSpan.FromMilliseconds(250), RxApp.MainThreadScheduler)
287
+ .Where(b => b.Count > 0)
288
.Subscribe(
289
xs => sectionCollectionChanged(section, xs),
- ex => this.Log().ErrorException("Error while watching section " + i + "'s Collection.", ex)));
290
+ ex => this.Log().ErrorException("Error while watching section " + section + "'s Collection.", ex)));
291
}
292
293
this.Log().Debug("Done resetuping section data and bindings!");
0 commit comments