We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12dce1e commit e232397Copy full SHA for e232397
Sushitrain/StartView.swift
@@ -540,6 +540,10 @@ struct StartView: View {
540
self.peers = p
541
self.folders = await self.appState.folders().sorted()
542
self.longTimeNotSeenDevices = p.filter {
543
+ if $0.isPaused() {
544
+ return false
545
+ }
546
+
547
if let d = $0.lastSeen()?.date() {
548
return -d.timeIntervalSinceNow > appState.userSettings.longTimeNoSeeInterval
549
}
0 commit comments