chore: release version v1.66.15

This commit is contained in:
Dmitry Popov
2025-06-08 11:03:13 +02:00
parent 4093f28cee
commit 27b5694885
2 changed files with 11 additions and 11 deletions

View File

@@ -51,7 +51,7 @@ export const Characters = ({ data }: CharactersProps) => {
['border-lime-600/70']: character.online, ['border-lime-600/70']: character.online,
}, },
)} )}
title={character.name} title={character.tracking_paused ? `${character.name} - Tracking Paused (click to resume)` : character.name}
> >
{character.tracking_paused && ( {character.tracking_paused && (
<> <>

View File

@@ -52,11 +52,11 @@ defmodule WandererApp.Character.TrackerPool do
tracked_ids tracked_ids
|> Enum.each(fn id -> |> Enum.each(fn id ->
WandererApp.Cache.put( # WandererApp.Cache.put(
"character:#{id}:tracking_paused", # "character:#{id}:tracking_paused",
true, # true,
ttl: @pause_tracking_timeout # ttl: @pause_tracking_timeout
) # )
Cachex.put(@cache, id, uuid) Cachex.put(@cache, id, uuid)
end) end)
@@ -85,11 +85,11 @@ defmodule WandererApp.Character.TrackerPool do
[tracked_id | r_tracked_ids] [tracked_id | r_tracked_ids]
end) end)
WandererApp.Cache.put( # WandererApp.Cache.put(
"character:#{tracked_id}:tracking_paused", # "character:#{tracked_id}:tracking_paused",
true, # true,
ttl: @pause_tracking_timeout # ttl: @pause_tracking_timeout
) # )
# Cachex.get_and_update(@cache, :tracked_characters, fn ids -> # Cachex.get_and_update(@cache, :tracked_characters, fn ids ->
# {:commit, ids ++ [tracked_id]} # {:commit, ids ++ [tracked_id]}