From 6257052c70039b97754f49f4dc6b0b39b4b66a28 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Wed, 16 Aug 2023 16:24:45 +0200 Subject: [PATCH] Fix flow.js script name fixes #2058 Signed-off-by: Marcel Klehr --- lib/Flow/CreateBookmark.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Flow/CreateBookmark.php b/lib/Flow/CreateBookmark.php index dc818107..10993113 100644 --- a/lib/Flow/CreateBookmark.php +++ b/lib/Flow/CreateBookmark.php @@ -74,12 +74,12 @@ class CreateBookmark implements IOperation { $dispatcher->addListener(RegisterOperationsEvent::class, static function (RegisterOperationsEvent $event) { $operation = OC::$server->query(CreateBookmark::class); $event->registerOperation($operation); - Util::addScript('bookmarks', 'flow'); + Util::addScript('bookmarks', 'bookmarks-flow'); }); $dispatcher->addListener(RegisterEntitiesEvent::class, static function (RegisterEntitiesEvent $event) { $entity = OC::$server->query(Bookmark::class); $event->registerEntity($entity); - Util::addScript('bookmarks', 'flow'); + Util::addScript('bookmarks', 'bookmarks-flow'); }); } }