mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
Removed unnecessary error from IsStreamable
This commit is contained in:
@@ -19,7 +19,8 @@ func IsStreamable(scene *models.Scene) (bool, error) {
|
||||
case "video/quicktime", "video/mp4", "video/webm", "video/x-m4v":
|
||||
return true, nil
|
||||
default:
|
||||
return HasTranscode(scene)
|
||||
hasTranscode, _ := HasTranscode(scene)
|
||||
return hasTranscode, nil
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user