diff --git a/CHANGES.md b/CHANGES.md index 546268e..7490ba1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -47,6 +47,7 @@ * Change DisplayShow row change to wanted colour on manual search * Fix DisplayShow wheel animation not displaying * Update Requests 2.19.1 (33b41c7) to 2.19.1 (2c6a842) +* Change add qual response to finished handler and change "good" from magnifier to tick ### 0.17.11 (2018-10-14 18:43:00 UTC) diff --git a/gui/slick/js/ajaxEpSearch.js b/gui/slick/js/ajaxEpSearch.js index a86f464..936a9a6 100644 --- a/gui/slick/js/ajaxEpSearch.js +++ b/gui/slick/js/ajaxEpSearch.js @@ -99,9 +99,7 @@ function uiUpdateComplete(data) { imgTip = 'Click for manual search'; link$.attr('class', 'ep-search').attr(attrName, href.replace('retry', 'search')); } - if (/good/i.test(ep.statusoverview)) { - imgCls = uiOptions.searchImage; - } else if (/snatched/i.test(ep.statusoverview)) { + if (/good|qual|snatched/i.test(ep.statusoverview)) { imgCls = uiOptions.imgYes; } else { imgTip = 'Last manual search failed. Click to try again';