mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-03 19:08:20 -04:00
Fixed UI update issue for changing season quality
This commit is contained in:
@@ -184,10 +184,10 @@ $("#qualityChanger").dialog({
|
||||
type: 'POST',
|
||||
success: function (data) {
|
||||
var table = $('table[data-season="' + changeQualityData + '"]');
|
||||
var rows = $(table).children('tr');
|
||||
var rows = $(table).find('tbody').children('tr');
|
||||
|
||||
$(rows).each(function() {
|
||||
if ($(this).attr('data-episodefileid') === 0)
|
||||
if ($(this).attr('data-episodefileid') === '0')
|
||||
return;
|
||||
|
||||
var qualityCell = $(this).find('.episodeQuality');
|
||||
|
||||
Reference in New Issue
Block a user