fix(workflowengine): remove non existing script loading

- resolves https://github.com/nextcloud/server/issues/59385

The script does not exist anymore, so remove it.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2026-04-03 17:23:43 +02:00
parent 92e4c882fc
commit 645350d4b2
No known key found for this signature in database
GPG key ID: 7E849AE05218500F

View file

@ -18,7 +18,6 @@ use OCP\WorkflowEngine\Events\LoadSettingsScriptsEvent;
/** @template-implements IEventListener<LoadSettingsScriptsEvent> */
class LoadAdditionalSettingsScriptsListener implements IEventListener {
public function handle(Event $event): void {
Util::addScript('core', 'systemtags');
Util::addScript(Application::APP_ID, 'workflowengine');
}
}