forked from AkkomaGang/akkoma
Change updateId to uid because apparently that's the new name
This commit is contained in:
parent
b7462040cc
commit
563b964690
2 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ def run(["index"]) do
|
||||||
)
|
)
|
||||||
|
|
||||||
with {:ok, res} <- result do
|
with {:ok, res} <- result do
|
||||||
if not Map.has_key?(res, "updateId") do
|
if not Map.has_key?(res, "uid") do
|
||||||
IO.puts("\nFailed to index: #{inspect(result)}")
|
IO.puts("\nFailed to index: #{inspect(result)}")
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|
|
@ -153,7 +153,7 @@ def add_to_index(activity) do
|
||||||
)
|
)
|
||||||
|
|
||||||
with {:ok, res} <- result,
|
with {:ok, res} <- result,
|
||||||
true <- Map.has_key?(res, "updateId") do
|
true <- Map.has_key?(res, "uid") do
|
||||||
# Do nothing
|
# Do nothing
|
||||||
else
|
else
|
||||||
_ ->
|
_ ->
|
||||||
|
|
Loading…
Reference in a new issue