diff --git a/src/org/openstreetmap/josm/gui/GettingStarted.java b/src/org/openstreetmap/josm/gui/GettingStarted.java
index 6083ed746..8166caaa2 100644
|
a
|
b
|
private void getMOTD() {
|
| 175 | 175 | if (!contentInitialized && Config.getPref().getBoolean("help.displaymotd", true)) { |
| 176 | 176 | try { |
| 177 | 177 | content = new MotdContent().updateIfRequiredString(); |
| | 178 | content = content.replaceFirst("<h1", |
| | 179 | "<center><img src='https://josm.openstreetmap.de/export/16155/josm/trunk/nodist/images/logo/bannerhorizontal.jpg'></center><h1"); |
| 178 | 180 | contentInitialized = true; |
| 179 | 181 | ProxyPreference.removeProxyPreferenceListener(this); |
| 180 | 182 | } catch (IOException ex) { |