fix for #65304. sr=bienvenu. if no subscribable servers, subscribe

dialog won't dismiss when you hit cancel.
This commit is contained in:
sspitzer%netscape.com 2001-01-19 22:04:06 +00:00
parent b7566a4f03
commit c4695f270d

View File

@ -25,7 +25,9 @@ function goDoCommand()
function Stop()
{
//dump("Stop()\n")
gSubscribableServer.stopPopulating(msgWindow);
if (gSubscribableServer) {
gSubscribableServer.stopPopulating(msgWindow);
}
}
var Bundle = srGetStrBundle("chrome://messenger/locale/subscribe.properties");