diff options
author | sr55 <[email protected]> | 2008-04-11 21:45:18 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-04-11 21:45:18 +0000 |
commit | 58b120562cb887b0df4e3d25c1f04d2177a4e2fb (patch) | |
tree | 373c511b6bad981230cc1e3790a6bda12de621d6 /win | |
parent | f76035d5b5ffdc42a3c5af3973e0b9d82c080bd6 (diff) |
WinGui:
- Fixed bug in the RSS reader.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1405 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/C#/Functions/RssReader.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/RssReader.cs b/win/C#/Functions/RssReader.cs index 44fffd21b..3d69a891f 100644 --- a/win/C#/Functions/RssReader.cs +++ b/win/C#/Functions/RssReader.cs @@ -71,7 +71,7 @@ namespace Handbrake.Functions readRss();
for (int i = 0; i < nodeChannel.ChildNodes.Count; i++)
{
- if (nodeChannel.ChildNodes[6].Name == "item")
+ if (nodeChannel.ChildNodes[nodeChannel.ChildNodes.Count -1 ].Name == "item")
{
nodeItem = nodeChannel.ChildNodes[0];
t = readRss();
|