Skip to content

Commit

Permalink
Fix #14806.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Jun 15, 2023
1 parent b6fc7cc commit 6065fee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion osx/src/main/java/ch/cyberduck/ui/cocoa/MainApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import ch.cyberduck.core.dav.DAVProtocol;
import ch.cyberduck.core.dav.DAVSSLProtocol;
import ch.cyberduck.core.dropbox.DropboxProtocol;
import ch.cyberduck.core.eue.EueProtocol;
import ch.cyberduck.core.ftp.FTPProtocol;
import ch.cyberduck.core.ftp.FTPTLSProtocol;
import ch.cyberduck.core.googledrive.DriveProtocol;
Expand Down Expand Up @@ -107,7 +108,8 @@ public static void main(String... arguments) {
new NextcloudProtocol(),
new OwncloudProtocol(),
new CteraProtocol(),
new BoxProtocol()
new BoxProtocol(),
new EueProtocol()
);
protocols.load();
final MainController c = new MainController();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
using ch.cyberduck.core.ctera;
using ch.cyberduck.core.dav;
using ch.cyberduck.core.dropbox;
using ch.cyberduck.core.eue;
using ch.cyberduck.core.exception;
using ch.cyberduck.core.ftp;
using ch.cyberduck.core.googledrive;
Expand Down Expand Up @@ -151,7 +152,7 @@ public MainController(ProtocolFactory protocolFactory, BaseController controller
new DAVSSLProtocol(), new SwiftProtocol(), new S3Protocol(), new GoogleStorageProtocol(),
new AzureProtocol(), new IRODSProtocol(), new SpectraProtocol(), new B2Protocol(), new DriveProtocol(),
new DropboxProtocol(), new HubicProtocol(), new LocalProtocol(), new OneDriveProtocol(), new SharepointProtocol(), new SharepointSiteProtocol(),
new MantaProtocol(), new SDSProtocol(), new StoregateProtocol(), new BrickProtocol(), new NextcloudProtocol(), new OwncloudProtocol(), new CteraProtocol(), new BoxProtocol());
new MantaProtocol(), new SDSProtocol(), new StoregateProtocol(), new BrickProtocol(), new NextcloudProtocol(), new OwncloudProtocol(), new CteraProtocol(), new BoxProtocol(), new EueProtocol());
protocolFactory.load();

Locator.SetLocator(new StructureMapBootstrapper.SplatDependencyResolver());
Expand Down

0 comments on commit 6065fee

Please sign in to comment.