Revert "[PALEMOON] Use generic application icon for external applications in about:feeds"

This reverts commit c8d90e332f4da50fdaa77eb733481d8be547391c.
This commit is contained in:
NTD 2018-11-14 02:50:09 -05:00 committed by Roy Tam
commit dfcf00a75f

View file

@ -698,7 +698,12 @@ FeedWriter.prototype = {
* @returns moz-icon url of the given file as a string
*/
_getFileIconURL: function FW__getFileIconURL(file) {
return "moz-icon://dummy.exe?size=16";
var ios = Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService);
var fph = ios.getProtocolHandler("file")
.QueryInterface(Ci.nsIFileProtocolHandler);
var urlSpec = fph.getURLSpecFromFile(file);
return "moz-icon://" + urlSpec + "?size=16";
},
/**