Issue #1258 - Part 10: Remove chat core bits

This commit is contained in:
Matt A. Tobin 2019-11-12 21:31:48 -05:00 • committed by Roy Tam
commit 65944ea58a
8 changed files with 5 additions and 64 deletions

View file

@ -11,9 +11,9 @@ MDNService.prototype = {
name: "mdn",
chromePackageName: "messenger",
showPanel: function(server) {
// don't show the panel for news, rss, im or local accounts
// don't show the panel for news, rss, or local accounts
return (server.type != "nntp" && server.type != "rss" &&
server.type != "im" && server.type != "none");
server.type != "none");
},
QueryInterface: XPCOMUtils.generateQI([Components.interfaces.nsIMsgAccountManagerExtension]),