From c5a299d5b11a669f9e2d1c7dcf3796cb599fd430 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 23 Feb 2021 10:33:03 +0000 Subject: [PATCH] rc: fix options/local to return the filter options --- fs/rc/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/rc/config.go b/fs/rc/config.go index a80f59399..6e9d97dac 100644 --- a/fs/rc/config.go +++ b/fs/rc/config.go @@ -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 }