forked from AkkomaGang/akkoma
Fix wrong argument order when calling NaiveDateTime.diff
This commit is contained in:
parent
84a40f6f26
commit
a9c700ff15
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ def get_by_id_and_maybe_refetch(id, opts \\ []) do
|
||||||
%{updated_at: updated_at} = object = get_by_id(id)
|
%{updated_at: updated_at} = object = get_by_id(id)
|
||||||
|
|
||||||
if opts[:interval] &&
|
if opts[:interval] &&
|
||||||
NaiveDateTime.diff(updated_at, NaiveDateTime.utc_now()) > opts[:interval] do
|
NaiveDateTime.diff(NaiveDateTime.utc_now(), updated_at) > opts[:interval] do
|
||||||
case Fetcher.refetch_object(object) do
|
case Fetcher.refetch_object(object) do
|
||||||
{:ok, %Object{} = object} ->
|
{:ok, %Object{} = object} ->
|
||||||
object
|
object
|
||||||
|
|
Loading…
Reference in a new issue