gui, lib/model: Mark folders unaccepted by remote device (fixes #8202) (#8201)

This commit is contained in:
André Colomb
2022-04-10 22:47:57 +02:00
committed by GitHub
parent bca6d31b95
commit 0c46e0a9cc
11 changed files with 118 additions and 37 deletions
+8
View File
@@ -52,6 +52,14 @@ func (s folderState) String() string {
}
}
type remoteFolderState int
const (
remoteNotSharing remoteFolderState = iota
remotePaused
remoteValid
)
type stateTracker struct {
folderID string
evLogger events.Logger