Skip to content

Commit

Permalink
fix(network): Fixed failing network scan for detecting local IP addre…
Browse files Browse the repository at this point in the history
…sses
  • Loading branch information
andris9 committed Feb 26, 2024
1 parent 8229fd7 commit 048358d
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 20 deletions.
2 changes: 1 addition & 1 deletion lib/routes-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -8188,7 +8188,7 @@ return payload;`
path: '/admin/config/network/reload',
async handler(request) {
try {
await updatePublicInterfaces();
await updatePublicInterfaces(redis);

let localAddresses = [].concat((await settings.get('localAddresses')) || []);

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"homepage": "https://emailengine.app/",
"dependencies": {
"@bugsnag/js": "7.22.4",
"@elastic/elasticsearch": "8.12.1",
"@elastic/elasticsearch": "8.12.2",
"@hapi/bell": "13.0.1",
"@hapi/boom": "10.0.1",
"@hapi/cookie": "12.0.1",
Expand All @@ -59,7 +59,7 @@
"ace-builds": "1.32.6",
"base32.js": "0.1.0",
"bull-arena": "4.2.0",
"bullmq": "5.3.1",
"bullmq": "5.3.3",
"compare-versions": "6.1.0",
"dotenv": "16.4.5",
"encoding-japanese": "2.0.0",
Expand All @@ -81,9 +81,9 @@
"ipaddr.js": "2.1.0",
"joi": "17.12.2",
"jquery": "3.7.1",
"libbase64": "1.2.1",
"libmime": "5.2.1",
"libqp": "2.0.1",
"libbase64": "1.3.0",
"libmime": "5.3.4",
"libqp": "2.1.0",
"license-checker": "25.0.1",
"mailparser": "3.6.7",
"mailsplit": "5.4.0",
Expand Down Expand Up @@ -113,7 +113,7 @@
"devDependencies": {
"chai": "4.3.10",
"eerawlog": "1.5.1",
"eslint": "8.56.0",
"eslint": "8.57.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "9.1.0",
"grunt": "1.6.1",
Expand Down
Loading

0 comments on commit 048358d

Please sign in to comment.