mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-18 12:28:46 +00:00
🤖 Auto commit for release 'develop' on 2025-12-17
This commit is contained in:
@@ -59,7 +59,7 @@ trait ChartGeneration
|
||||
return $cache->get();
|
||||
}
|
||||
Log::debug('Regenerate chart.account.account-balance-chart from scratch.');
|
||||
$locale = \FireflyIII\Support\Facades\Steam::getLocale();
|
||||
$locale = Steam::getLocale();
|
||||
|
||||
/** @var GeneratorInterface $generator */
|
||||
$generator = app(GeneratorInterface::class);
|
||||
|
||||
@@ -33,6 +33,7 @@ use FireflyIII\Models\TransactionGroup;
|
||||
use FireflyIII\Models\TransactionJournal;
|
||||
use Illuminate\Http\RedirectResponse;
|
||||
use Illuminate\Routing\Redirector;
|
||||
use FireflyIII\Support\Facades\Steam;
|
||||
|
||||
/**
|
||||
* Trait UserNavigation
|
||||
@@ -53,7 +54,7 @@ trait UserNavigation
|
||||
$url = (string)session($identifier);
|
||||
Log::debug(sprintf('The URL is %s', $url));
|
||||
|
||||
return \FireflyIII\Support\Facades\Steam::getSafeUrl($url, route('index'));
|
||||
return Steam::getSafeUrl($url, route('index'));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -137,7 +138,7 @@ trait UserNavigation
|
||||
|
||||
final protected function rememberPreviousUrl(string $identifier): ?string
|
||||
{
|
||||
$return = \FireflyIII\Support\Facades\Steam::getSafePreviousUrl();
|
||||
$return = Steam::getSafePreviousUrl();
|
||||
session()->put($identifier, $return);
|
||||
|
||||
Log::debug(sprintf('rememberPreviousUrl: %s: "%s"', $identifier, $return));
|
||||
|
||||
Reference in New Issue
Block a user