diff options
Diffstat (limited to 'internal/importer')
-rw-r--r-- | internal/importer/importer.go | 1 | ||||
-rw-r--r-- | internal/importer/ingest.go | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/importer/importer.go b/internal/importer/importer.go index 8a18c60..30ab2f6 100644 --- a/internal/importer/importer.go +++ b/internal/importer/importer.go @@ -11,6 +11,7 @@ import ( type Source struct { Name string + Key string Enable bool Type Type Channel string diff --git a/internal/importer/ingest.go b/internal/importer/ingest.go index 0044d67..08d0366 100644 --- a/internal/importer/ingest.go +++ b/internal/importer/ingest.go @@ -8,7 +8,6 @@ import ( "os" "reflect" "searchix/internal/options" - "strings" "github.com/bcicen/jstream" "github.com/mitchellh/mapstructure" @@ -221,7 +220,7 @@ func (i *OptionIngester) Process(ctx context.Context) (<-chan *options.NixOption // slog.Debug("sending option", "name", kv.Key) results <- &options.NixOption{ Name: kv.Key, - Source: strings.ToLower(i.source.Name), + Source: i.source.Key, Declarations: decs, Default: convertNixValue(i.optJSON.Default), Description: options.Markdown(i.optJSON.Description), |