rc: fix options/local to return the filter options

This commit is contained in:
Nick Craig-Wood 2021-02-23 10:33:03 +00:00
parent 04a8859d29
commit c5a299d5b1
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ map to the external options very easily with a few exceptions.
func rcOptionsLocal(ctx context.Context, in Params) (out Params, err error) {
out = make(Params)
out["config"] = fs.GetConfig(ctx)
out["filter"] = filter.GetConfig(ctx)
out["filter"] = filter.GetConfig(ctx).Opt
return out, nil
}