Merge pull request #215 from Noggog/log-display-crash-fix

Removed .Top() call in log display systems
This commit is contained in:
Timothy Baldridge 2019-11-27 10:15:29 -07:00 committed by GitHub
commit 32acbb524a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,6 @@ namespace Wabbajack
.Where(l => l.Count > 0)
.ObserveOn(RxApp.MainThreadScheduler)
.FlattenBufferResult()
.Top(5000)
.Bind(Log)
.Subscribe()
.DisposeWith(CompositeDisposable);