Skip to content

Commit

Permalink
Merge pull request #16495 from iterate-ch/bugfix/MD-22474
Browse files Browse the repository at this point in the history
Use home feature from derived implementations.
  • Loading branch information
dkocher authored Nov 7, 2024
2 parents f1306b8 + 755652c commit 1656d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webdav/src/main/java/ch/cyberduck/core/dav/DAVSession.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public void login(final LoginCallback prompt, final CancelCallback cancel) throw
return;
}
try {
final Path home = new DelegatingHomeFeature(new WorkdirHomeFeature(host), new DefaultPathHomeFeature(host)).find();
final Path home = this.getFeature(Home.class).find();
final HttpHead head = new HttpHead(new DAVPathEncoder().encode(home));
try {
client.execute(head, new MicrosoftIISFeaturesResponseHandler(capabilities));
Expand Down

0 comments on commit 1656d8f

Please sign in to comment.