Merge pull request #810 from yattee/auto-retry-video-loading

Retry loading video before presenting error
This commit is contained in:
Arkadiusz Fal
2024-09-11 09:29:28 +02:00
committed by GitHub
6 changed files with 49 additions and 0 deletions

View File

@@ -9,6 +9,10 @@ struct AdvancedSettingsGroupImporter {
Defaults[.showPlayNowInBackendContextMenu] = showPlayNowInBackendContextMenu
}
if let videoLoadingRetryCount = json["videoLoadingRetryCount"].int {
Defaults[.videoLoadingRetryCount] = videoLoadingRetryCount
}
if let showMPVPlaybackStats = json["showMPVPlaybackStats"].bool {
Defaults[.showMPVPlaybackStats] = showMPVPlaybackStats
}