Missing new line from network monitor "connected!" notification

This commit is contained in:
Federico Fissore 2013-07-20 19:49:50 +02:00
parent 0aa42f1914
commit e6b11c44f6
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ public class NetworkMonitor extends AbstractMonitor {
// ignore // ignore
} }
if (channel.isConnected()) { if (channel.isConnected()) {
NetworkMonitor.this.message(_("connected!")); NetworkMonitor.this.message(_("connected!") + '\n');
} }
} }