| Index: lib/ui.js | 
| =================================================================== | 
| --- a/lib/ui.js | 
| +++ b/lib/ui.js | 
| @@ -1670,17 +1670,17 @@ let UI = exports.UI = | 
| while (node) | 
| { | 
| if (node.nodeType == Ci.nsIDOMNode.ELEMENT_NODE) | 
| { | 
| let style = wnd.getComputedStyle(node, ""); | 
| let bgImage = extractImageURL(style, "background-image") || extractImageURL(style, "list-style-image"); | 
| if (bgImage) | 
| { | 
| -            let data = RequestNotifier.getDataForNode(wnd.document, true, Policy.type.IMAGE, bgImage); | 
| +            let data = RequestNotifier.getDataForNode(wnd.document, true, "IMAGE", bgImage); | 
| if (data && !data[1].filter) | 
| { | 
| addMenuItem(data); | 
| break; | 
| } | 
| } | 
| } | 
|  | 
|  |