From b9300824263243ba01f83b0519a2be246de9f6f3 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 18 Aug 2025 11:30:02 -0400 Subject: [PATCH] fix: fixup for lint Signed-off-by: Josh --- remote.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/remote.php b/remote.php index c38c4940b4c..5e8a8b6ed0f 100644 --- a/remote.php +++ b/remote.php @@ -82,7 +82,7 @@ try { $parts = explode('/', $file, 2); $app = $parts[0]; \OC::$REQUESTEDAPP = $app; - + // Load all required applications $appManager = Server::get(IAppManager::class); $appManager->loadApps(['authentication']); @@ -93,10 +93,10 @@ try { if (!$appManager->isEnabledForUser($app)) { throw new RemoteException('App not installed: ' . $app, 503); // or maybe 404? } - + // Load the app $appManager->loadApp($app); - + $baseuri = OC::$WEBROOT . '/remote.php/' . $service . '/'; require_once $file; } catch (Exception $ex) {