fix: changing facets reverted to combined search
1 file changed, 1 insertion(+), 4 deletions(-)
changed files
M internal/server/mux.go → internal/server/mux.go
@@ -95,10 +95,7 @@ }) } for _, source := range cfg.Importer.Sources { - sh := handler.NewSourceHandler(source) - importerPath := path.Join("/", source.Importer.String(), source.Key) - - mux.Handle(importerPath+"/", http.StripPrefix(importerPath, sh)) + mux.Handle(source.LocalURL().String(), handler.NewSourceHandler(source)) } top := http.NewServeMux()