only check Achievements for default ToplevelAgent correctly (Issue #253)
This commit is contained in:
parent
1a310e6652
commit
c93261a98f
1 changed files with 2 additions and 1 deletions
|
|
@ -151,7 +151,8 @@
|
|||
private function checkAchievements(\nre\core\Request $request, \nre\core\Response $response)
|
||||
{
|
||||
// Do not check MediaController
|
||||
if($this->request->getParam('layout') != \nre\configs\AppConfig::$defaults['toplevel']) {
|
||||
$layout = $this->request->getParam('layout');
|
||||
if(!empty($layout) && $layout != \nre\configs\AppConfig::$defaults['toplevel']) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue