Fix error while validating scrape stage options
This commit is contained in:
parent
1a934430cc
commit
5d38d9567e
|
@ -39,15 +39,21 @@ defmodule Frenzy.Pipeline.ScrapeStage do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
case opts["convert_to_data_uris"] do
|
case opts do
|
||||||
nil ->
|
{:ok, opts} ->
|
||||||
{:ok, %{opts | convert_to_data_uris: true}}
|
case opts["convert_to_data_uris"] do
|
||||||
|
nil ->
|
||||||
|
{:ok, %{opts | convert_to_data_uris: true}}
|
||||||
|
|
||||||
value when is_boolean(value) ->
|
value when is_boolean(value) ->
|
||||||
{:ok, opts}
|
{:ok, opts}
|
||||||
|
|
||||||
|
_ ->
|
||||||
|
{:error, "convert_to_data_uris must be a boolean"}
|
||||||
|
end
|
||||||
|
|
||||||
_ ->
|
_ ->
|
||||||
{:error, "convert_to_data_uris must be a boolean"}
|
opts
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue