From 99ab68b955a99169645fd5ede690c0757e69f812 Mon Sep 17 00:00:00 2001 From: Pierre de Lacroix Date: Sat, 10 Apr 2021 18:40:23 +0200 Subject: fix missing application_service client parameter --- lib/polyjuice/client/low_level.ex | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/polyjuice/client') diff --git a/lib/polyjuice/client/low_level.ex b/lib/polyjuice/client/low_level.ex index c4329c0..94dbcb6 100644 --- a/lib/polyjuice/client/low_level.ex +++ b/lib/polyjuice/client/low_level.ex @@ -153,6 +153,7 @@ defmodule Polyjuice.Client.LowLevel do - `device_id`: the device ID - `storage`: (required by sync) the storage backend to use (see `Polyjuice.Client.Storage`) + - `application_service`: wether to connect as an application service """ @spec create(base_url :: String.t(), opts :: Keyword.t()) :: t() def create(base_url, opts \\ []) when is_binary(base_url) do @@ -164,6 +165,7 @@ defmodule Polyjuice.Client.LowLevel do user_id: Keyword.get(opts, :user_id), device_id: Keyword.get(opts, :device_id), storage: Keyword.get(opts, :storage), + application_service: Keyword.get(opts, :application_service, false), test: Keyword.get(opts, :test, false) } end -- cgit v1.2.3