From e99a37bae341d65655d18234e88191d56dd4dcf6 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 2 Nov 2025 04:51:15 +0100 Subject: [PATCH] Fix #11157 --- app/Support/CacheProperties.php | 2 ++ changelog.md | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/app/Support/CacheProperties.php b/app/Support/CacheProperties.php index e22808ea06..5365656511 100644 --- a/app/Support/CacheProperties.php +++ b/app/Support/CacheProperties.php @@ -24,6 +24,7 @@ declare(strict_types=1); namespace FireflyIII\Support; use Carbon\Carbon; +use FireflyIII\Support\Facades\Steam; use Illuminate\Support\Collection; use Illuminate\Support\Facades\Cache; use JsonException; @@ -44,6 +45,7 @@ class CacheProperties if (auth()->check()) { $this->addProperty(auth()->user()->id); $this->addProperty(app('preferences')->lastActivity()); + $this->addProperty(Steam::anonymous()); } } diff --git a/changelog.md b/changelog.md index a46c12dadf..6e5ca8fd73 100644 --- a/changelog.md +++ b/changelog.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 6.4.5 - 2025-11-xx + +### Fixed + +- #11157 + ## 6.4.4 - 2025-11-02 ### Added