(syncKey string)
| 37 | } |
| 38 | |
| 39 | func (s *Service) markHomePluginsSynced(syncKey string) { |
| 40 | if s == nil || strings.TrimSpace(syncKey) == "" { |
| 41 | return |
| 42 | } |
| 43 | s.homePluginSyncMu.Lock() |
| 44 | s.homePluginSyncKey = syncKey |
| 45 | s.homePluginSyncMu.Unlock() |
| 46 | } |
| 47 | |
| 48 | func (s *Service) reportHomePluginStatus(ctx context.Context, cfg *config.Config, report homeplugins.SyncReport) { |
| 49 | if s == nil || cfg == nil { |
no outgoing calls