This commit is contained in:
James Cole
2025-11-02 04:51:15 +01:00
parent 27336e0721
commit e99a37bae3
2 changed files with 8 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ declare(strict_types=1);
namespace FireflyIII\Support; namespace FireflyIII\Support;
use Carbon\Carbon; use Carbon\Carbon;
use FireflyIII\Support\Facades\Steam;
use Illuminate\Support\Collection; use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Cache;
use JsonException; use JsonException;
@@ -44,6 +45,7 @@ class CacheProperties
if (auth()->check()) { if (auth()->check()) {
$this->addProperty(auth()->user()->id); $this->addProperty(auth()->user()->id);
$this->addProperty(app('preferences')->lastActivity()); $this->addProperty(app('preferences')->lastActivity());
$this->addProperty(Steam::anonymous());
} }
} }

View File

@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## 6.4.5 - 2025-11-xx
### Fixed
- #11157
## 6.4.4 - 2025-11-02 ## 6.4.4 - 2025-11-02
### Added ### Added