mirror of https://github.com/stashapp/stash.git
Removed unnecessary error from IsStreamable
This commit is contained in:
parent
39c37cd8a8
commit
5db9cd9c05
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue