From ae9cd35e72631dd3c31737c9e03baddb406bcbfd Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Tue, 27 Feb 2024 21:24:49 +0800 Subject: [PATCH] Fix protocol used for FPUIExtensionServiceSource Signed-off-by: Claudio Cambra --- .../FileProviderExt/Services/FPUIExtensionServiceSource.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/Services/FPUIExtensionServiceSource.swift b/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/Services/FPUIExtensionServiceSource.swift index 85f3de7e6..fc7888993 100644 --- a/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/Services/FPUIExtensionServiceSource.swift +++ b/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/Services/FPUIExtensionServiceSource.swift @@ -31,7 +31,7 @@ class FPUIExtensionServiceSource: NSObject, NSFileProviderServiceSource, NSXPCLi _ listener: NSXPCListener, shouldAcceptNewConnection newConnection: NSXPCConnection ) -> Bool { - newConnection.exportedInterface = NSXPCInterface(with: ClientCommunicationProtocol.self) + newConnection.exportedInterface = NSXPCInterface(with: FPUIExtensionService.self) newConnection.exportedObject = self newConnection.resume() return true -- 2.30.2