Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Jan 8, 2024
1 parent 7fbc6a2 commit ed4cd29
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/utils/matrix-host-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,9 @@ export class MatrixHostResolver {
};
}
catch (ex) {
log.debug(`No well-known SRV (_matrix-fed) found for ${hostname}: ${ex instanceof Error ? ex.message : ex}`);
log.debug(
`No well-known SRV (_matrix-fed) found for ${hostname}: ${ex instanceof Error ? ex.message : ex}`
);
}

// 3.4
Expand All @@ -228,7 +230,9 @@ export class MatrixHostResolver {
};
}
catch (ex) {
log.debug(`No well-known SRV (_matrix) found for ${hostname}: ${ex instanceof Error ? ex.message : ex}`);
log.debug(
`No well-known SRV (_matrix) found for ${hostname}: ${ex instanceof Error ? ex.message : ex}`
);
}

// 3.5
Expand Down

0 comments on commit ed4cd29

Please sign in to comment.