Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sick-Beard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
Sick-Beard
Commits
d13ebe78
Commit
d13ebe78
authored
Mar 15, 2011
by
Nic Wolfe
Browse files
Options
Downloads
Patches
Plain Diff
Add missing case for 720p HDDVD to count as 720p BluRay
parent
0fcf9819
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
sickbeard/common.py
+1
-1
1 addition, 1 deletion
sickbeard/common.py
with
1 addition
and
1 deletion
sickbeard/common.py
+
1
−
1
View file @
d13ebe78
...
@@ -132,7 +132,7 @@ class Quality:
...
@@ -132,7 +132,7 @@ class Quality:
return
Quality
.
HDTV
return
Quality
.
HDTV
elif
checkName
([
"
720p
"
,
"
web.dl
"
],
all
)
or
checkName
([
"
720p
"
,
"
itunes
"
,
"
h.?264
"
],
all
):
elif
checkName
([
"
720p
"
,
"
web.dl
"
],
all
)
or
checkName
([
"
720p
"
,
"
itunes
"
,
"
h.?264
"
],
all
):
return
Quality
.
HDWEBDL
return
Quality
.
HDWEBDL
elif
checkName
([
"
720p
"
,
"
bluray
"
,
"
x264
"
],
all
):
elif
checkName
([
"
720p
"
,
"
bluray
"
,
"
x264
"
],
all
)
or
checkName
([
"
720p
"
,
"
hddvd
"
,
"
x264
"
],
all
):
return
Quality
.
HDBLURAY
return
Quality
.
HDBLURAY
elif
checkName
([
"
1080p
"
,
"
bluray
"
,
"
x264
"
],
all
)
or
checkName
([
"
1080p
"
,
"
hddvd
"
,
"
x264
"
],
all
):
elif
checkName
([
"
1080p
"
,
"
bluray
"
,
"
x264
"
],
all
)
or
checkName
([
"
1080p
"
,
"
hddvd
"
,
"
x264
"
],
all
):
return
Quality
.
FULLHDBLURAY
return
Quality
.
FULLHDBLURAY
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment