Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
9ad76e4f
Commit
9ad76e4f
authored
Jun 11, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
filename: episode numbers can have more than 2 digits (fixes #14859)
parent
d2007feb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
share/lua/meta/reader/filename.lua
share/lua/meta/reader/filename.lua
+1
-1
No files found.
share/lua/meta/reader/filename.lua
View file @
9ad76e4f
...
...
@@ -42,7 +42,7 @@ function read_meta()
-- Find "Show.Name.S01E12-blah.avi"
local
title
,
seasonNumber
_
,
_
,
showName
,
seasonNumber
,
episodeNumber
=
string.find
(
name
,
"(.+)S(%d
%d)E(%d%d
).*"
)
_
,
_
,
showName
,
seasonNumber
,
episodeNumber
=
string.find
(
name
,
"(.+)S(%d
+)E(%d+
).*"
)
if
not
showName
then
return
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment