boolean noNetwork = (Boolean) GuiUtil.getSessionValue("_noNetwork");
if (noNetwork){
GuiUtil.getLogger().info(GuiUtil.getMessage(BUNDLE,"noNetworkDetected"));
donotPing = true;
}else{
UpdateCheckFrequency userPreference = SystemInfo.getUpdateCheckFrequency();
if (userPreference == UpdateCheckFrequency.NEVER){
GuiUtil.getLogger().info(GuiUtil.getMessage(BUNDLE,"noCheckPerformed"));
GuiUtil.setSessionValue("_doNotPing", "true");
donotPing = true;
}