mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Don't allow lists under maintenance to be downloaded
This commit is contained in:
@ -136,7 +136,9 @@ namespace Wabbajack
|
||||
{
|
||||
await Download();
|
||||
}
|
||||
}, LoadingLock.WhenAnyValue(ll => ll.IsLoading).Select(v => !v));
|
||||
}, LoadingLock.WhenAnyValue(ll => ll.IsLoading)
|
||||
.CombineLatest(this.WhenAnyValue(vm => vm.IsBroken))
|
||||
.Select(v => !v.First && !v.Second));
|
||||
|
||||
_Exists = Observable.Interval(TimeSpan.FromSeconds(0.5))
|
||||
.Unit()
|
||||
|
Reference in New Issue
Block a user