Skip to content

Commit

Permalink
fixed: wrong DGV
Browse files Browse the repository at this point in the history
  • Loading branch information
DanCooper committed Jan 12, 2018
1 parent 8e39828 commit 2ee9e5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EmberMediaManager/frmMain.vb
Expand Up @@ -1062,7 +1062,7 @@ Public Class frmMain
CreateScrapeList_Movie(Enums.ScrapeType.SelectedAuto, Master.DefaultOptions_Movie, ScrapeModifiers)
End If
ElseIf currMainTabTag.ContentType = Enums.ContentType.TV Then
If dgvMovies.SelectedRows.Count = 1 AndAlso Not String.IsNullOrEmpty(currTV.Filename) Then
If dgvTVEpisodes.SelectedRows.Count = 1 AndAlso currTV.FilenameSpecified Then
Dim ScrapeModifiers As New Structures.ScrapeModifiers
Functions.SetScrapeModifiers(ScrapeModifiers, Enums.ModifierType.EpisodeMeta, True)
CreateScrapeList_TVEpisode(Enums.ScrapeType.SelectedAuto, Master.DefaultOptions_TV, ScrapeModifiers)
Expand Down

0 comments on commit 2ee9e5d

Please sign in to comment.