diff options
| author | 2025-03-05 22:36:41 +0100 | |
|---|---|---|
| committer | 2025-03-05 22:36:41 +0100 | |
| commit | 40cdeb86874296b090dfb48ce4d0d6c41455405b (patch) | |
| tree | d939775df5e528f05a443e74572cb516e8017319 | |
| parent | a1b5893bd37cd733da5afaa83f8eb6af59633666 (diff) | |
fix: Update the user's last activity on login action (#7406)
| -rw-r--r-- | app/Controllers/authController.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Controllers/authController.php b/app/Controllers/authController.php index d263d6486..6b6a92c31 100644 --- a/app/Controllers/authController.php +++ b/app/Controllers/authController.php @@ -164,6 +164,8 @@ class FreshRSS_auth_Controller extends FreshRSS_ActionController { Minz_Translate::init(FreshRSS_Context::userConf()->language); + FreshRSS_UserDAO::touch(); + // All is good, go back to the original request or the index. $url = Minz_Url::unserialize(Minz_Request::paramString('original_request')); if (empty($url)) { |
