diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-15 14:09:39 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-15 14:09:39 -0800 |
| commit | 1d3ad564df8cc09b16172901916bcef9abe31ab4 (patch) | |
| tree | 342ebced54435226c71bc720e2275edc3894bc24 /internal | |
| parent | d176a6b6b79b76f2324a356abda4ac254ec4fc29 (diff) | |
| download | neko-1d3ad564df8cc09b16172901916bcef9abe31ab4.tar.gz neko-1d3ad564df8cc09b16172901916bcef9abe31ab4.tar.bz2 neko-1d3ad564df8cc09b16172901916bcef9abe31ab4.zip | |
Backend: Support multi-feed filtering in stream API
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/crawler/integration_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/crawler/integration_test.go b/internal/crawler/integration_test.go index 633b60f..8223265 100644 --- a/internal/crawler/integration_test.go +++ b/internal/crawler/integration_test.go @@ -52,7 +52,7 @@ func TestCrawlIntegration(t *testing.T) { } // Verify items were stored - items, err := item.Filter(0, f.Id, "", false, false, 0, "") + items, err := item.Filter(0, []int64{f.Id}, "", false, false, 0, "") if err != nil { t.Fatalf("Failed to filter items: %v", err) } |
