diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-01 15:00:59 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-01 15:00:59 +0300 |
| commit | 9fe227b79ea15ffcde8bf175ff879f991d183eab (patch) | |
| tree | b033237472a35e60074591e8788ee99c7c5630cc /internal/run.go | |
| parent | 075ddd7ecec4ab3f0648015857e32c3bb5240743 (diff) | |
more on federation
Diffstat (limited to 'internal/run.go')
| -rw-r--r-- | internal/run.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/run.go b/internal/run.go index 6066bc7..91fe323 100644 --- a/internal/run.go +++ b/internal/run.go @@ -17,13 +17,13 @@ func Run(ctx context.Context, configFile string, renotify, force bool) { notifyError(conf, err) } - // TODO: Also read other state files? Merge them.. state, err := newState(conf) if err != nil { notifyError(conf, err) } state = runChecks(ctx, state, conf) + state = mergeFederated(ctx, state, conf) if err := state.persist(); err != nil { notifyError(conf, err) |
