Skip to content

Commit

Permalink
fix: correct private host warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Sep 15, 2023
1 parent 1aab0dd commit df5ff4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/listen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export async function listen(
consola.warn(
`[listhen] Trying to listhen on private host ${JSON.stringify(
listhenOptions.hostname,
)} with public option disabled.`,
)} with public option enabled.`,
);
listhenOptions.public = false;
} else if (!listhenOptions.public && _anyhost && !(isWsl() || isDocker())) {
Expand Down

0 comments on commit df5ff4d

Please sign in to comment.