Fix error while validating scrape stage options
This commit is contained in:
parent
1a934430cc
commit
5d38d9567e
|
@ -39,6 +39,8 @@ defmodule Frenzy.Pipeline.ScrapeStage do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
case opts do
|
||||||
|
{:ok, opts} ->
|
||||||
case opts["convert_to_data_uris"] do
|
case opts["convert_to_data_uris"] do
|
||||||
nil ->
|
nil ->
|
||||||
{:ok, %{opts | convert_to_data_uris: true}}
|
{:ok, %{opts | convert_to_data_uris: true}}
|
||||||
|
@ -49,6 +51,10 @@ defmodule Frenzy.Pipeline.ScrapeStage do
|
||||||
_ ->
|
_ ->
|
||||||
{:error, "convert_to_data_uris must be a boolean"}
|
{:error, "convert_to_data_uris must be a boolean"}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
_ ->
|
||||||
|
opts
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@impl Stage
|
@impl Stage
|
||||||
|
|
Loading…
Reference in New Issue