Skip to content

Commit

Permalink
Fix missing return in Homeserver endpoint discovery, skipping DNS SRV
Browse files Browse the repository at this point in the history
  • Loading branch information
maxidorius committed Apr 27, 2019
1 parent 6278301 commit 85d9f9e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ public URL resolve(String domain) {
if (s4.isPresent()) {
URL dest = s4.get();
log.info("Resolution of {} via DNS SRV record to {}", domain, dest);
return dest;
}

URL dest = build(domain + ":" + getDefaultPort());
Expand Down

0 comments on commit 85d9f9e

Please sign in to comment.