Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
e0a19b96
Commit
e0a19b96
authored
Feb 11, 2012
by
Pierre Ynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
metachannels: don't crash if image tag is missing
Fixes #6008
parent
936199ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
share/lua/sd/metachannels.lua
share/lua/sd/metachannels.lua
+7
-2
No files found.
share/lua/sd/metachannels.lua
View file @
e0a19b96
...
...
@@ -59,9 +59,14 @@ function main()
if
(
item
.
name
==
'item'
)
then
simplexml
.
add_name_maps
(
item
)
local
url
=
string.gsub
(
item
.
children_map
[
'link'
][
1
].
children
[
1
],
'&'
,
'&'
)
local
title
=
item
.
children_map
[
'title'
][
1
].
children
[
1
]
local
arturl
=
nil
if
item
.
children_map
[
'image'
]
~=
nil
then
arturl
=
item
.
children_map
[
'image'
][
1
].
children_map
[
'url'
][
1
].
children
[
1
]
end
local
node
=
vlc
.
sd
.
add_item
(
{
path
=
url
,
title
=
item
.
children_map
[
'title'
][
1
].
children
[
1
]
,
arturl
=
item
.
children_map
[
'image'
][
1
].
children_map
[
'url'
][
1
].
children
[
1
]
}
)
title
=
title
,
arturl
=
arturl
}
)
end
end
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