diff --git a/gui/default/index.html b/gui/default/index.html
index 3764e6b81..c7008db22 100644
--- a/gui/default/index.html
+++ b/gui/default/index.html
@@ -760,6 +760,13 @@
Never |
{{deviceStats[deviceCfg.deviceID].lastSeen | date:"yyyy-MM-dd HH:mm:ss"}} |
+
+ | Sync Status |
+ Up to Date |
+
+ Out of Sync ({{completion[deviceCfg.deviceID]._total | percent}}, {{completion[deviceCfg.deviceID]._needBytes | binary}}B)
+ |
+
| Download Rate |
diff --git a/lib/model/folder_summary.go b/lib/model/folder_summary.go
index b3c924476..3fed5c55c 100644
--- a/lib/model/folder_summary.go
+++ b/lib/model/folder_summary.go
@@ -407,10 +407,6 @@ func (c *folderSummaryService) sendSummary(ctx context.Context, folder string) {
// We already know about ourselves.
continue
}
- if _, ok := c.model.Connection(devCfg.DeviceID); !ok {
- // We're not interested in disconnected devices.
- continue
- }
// Get completion percentage of this folder for the
// remote device.
|