Skip to content

Commit

Permalink
fix(core): bind local HTTP server to 127.0.0.1
Browse files Browse the repository at this point in the history
Related to #995.
  • Loading branch information
trollixx committed Mar 31, 2020
1 parent 4c813d7 commit 753ce5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/core/httpserver.cpp
Expand Up @@ -31,7 +31,7 @@
using namespace Zeal::Core;

namespace {
constexpr char LocalHttpServerHost[] = "127.0.0.22";
constexpr char LocalHttpServerHost[] = "127.0.0.1"; // macOS only routes 127.0.0.1 by default.
} // namespace

static Q_LOGGING_CATEGORY(log, "zeal.core.httpserver")
Expand Down

0 comments on commit 753ce5b

Please sign in to comment.