SubscribeDownloadAsync has flag state fix

This commit is contained in:
kamyker 2019-12-03 01:13:27 +01:00
parent c5f1033aeb
commit 61f3809b4e

View File

@ -273,7 +273,7 @@ public async Task<bool> SubscribeDownloadAsync( Action<float> progress = null, C
var downloading = Download( true );
if ( !downloading )
return State == ItemState.Installed;
return State.HasFlag( ItemState.Installed );
while ( true )
{