Allow plugins to be loaded on routes starting with /combine but not /combine/.

Fixes #4886.
This commit is contained in:
Luke Towers 2020-01-21 12:26:20 -06:00
parent a647b48715
commit 2b5d811180
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ class ServiceProvider extends ModuleServiceProvider
*/
protected function registerPrivilegedActions()
{
$requests = ['/combine', '@/system/updates', '@/system/install', '@/backend/auth'];
$requests = ['/combine/', '@/system/updates', '@/system/install', '@/backend/auth'];
$commands = ['october:up', 'october:update'];
/*