Skip to content

Commit

Permalink
Fix individual playlist scan
Browse files Browse the repository at this point in the history
if "Display chapter count" is enabled
Fixes #10
  • Loading branch information
UniqProject committed Nov 18, 2018
1 parent 4c9b4e5 commit 45a1206
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions BDInfo/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1040,10 +1040,11 @@ private void ScanBDROM()
foreach (ListViewItem item
in listViewPlaylistFiles.CheckedItems)
{
if (BDROM.PlaylistFiles.ContainsKey(item.Text))
string playlistName = (string)item.SubItems[0].Tag;
if (BDROM.PlaylistFiles.ContainsKey(playlistName))
{
TSPlaylistFile playlist =
BDROM.PlaylistFiles[item.Text];
BDROM.PlaylistFiles[playlistName];

foreach (TSStreamClip clip
in playlist.StreamClips)
Expand Down
4 changes: 2 additions & 2 deletions BDInfo/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.7.5.2")]
[assembly: AssemblyFileVersion("0.7.5.2")]
[assembly: AssemblyVersion("0.7.5.3")]
[assembly: AssemblyFileVersion("0.7.5.3")]

0 comments on commit 45a1206

Please sign in to comment.