- 🇸🇮Slovenia gombi
Closing this as the issue has been fixed: https://www.drupal.org/project/autologout/issues/3214958 🐛 Autologout triggered in background tab, no indication in other open tabs Fixed
/**
* Ajax callback to reset the last access session variable.
*/
public function ajaxSetLast() {
$_SESSION['autologout_last'] = $this->time->getRequestTime();
// Reset the timer.
$response = new AjaxResponse();
$markup = $this->autoLogoutManager->createTimer();
$response->addCommand(new ReplaceCommand('#timer', $markup));
$response->addCommand(new SettingsCommand(['activity' => true]));
return $response;
}
Closed: duplicate
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Closing this as the issue has been fixed: https://www.drupal.org/project/autologout/issues/3214958 🐛 Autologout triggered in background tab, no indication in other open tabs Fixed