mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Fix
This commit is contained in:
parent
3d1e243cbe
commit
49d9ec1fa6
1 changed files with 2 additions and 2 deletions
|
@ -247,9 +247,9 @@ class DownloadViewModel : ViewModel() {
|
|||
_usedBytes.postValue(localUsedBytes)
|
||||
_availableBytes.postValue(localBytesAvailable)
|
||||
_downloadBytes.postValue(localDownloadedBytes)
|
||||
} catch (e: Exception) {
|
||||
} catch (t: Throwable) {
|
||||
_downloadBytes.postValue(0)
|
||||
logError(e)
|
||||
logError(t)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue