[PR #4595] [MERGED] Fix listening url log with ipv6 host #4296

Closed
opened 2026-04-25 00:19:10 +02:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/advplyr/audiobookshelf/pull/4595
Author: @renesat
Created: 8/16/2025
Status: Merged
Merged: 8/21/2025
Merged by: @advplyr

Base: masterHead: fix/listening-ipv6-url


📝 Commits (2)

  • 553ffd1 Fix listening url log with ipv6 host
  • 138bb56 Update ipv6 server listening log

📊 Changes

1 file changed (+2 additions, -1 deletions)

View changed files

📝 server/Server.js (+2 -1)

📄 Description

Brief summary

Fix incorrect listening url in log when use ipv6 host

In-depth Description

Run with ipv6 host return incorrect url in log:

> node index.js --host ::
...
[2025-08-16 17:55:56.554] INFO: Listening on http://:::12378
...

After change:

> node index.js --host ::
...
[2025-08-16 17:55:56.554] INFO: Listening on http://[::]:12378
...

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/advplyr/audiobookshelf/pull/4595 **Author:** [@renesat](https://github.com/renesat) **Created:** 8/16/2025 **Status:** ✅ Merged **Merged:** 8/21/2025 **Merged by:** [@advplyr](https://github.com/advplyr) **Base:** `master` ← **Head:** `fix/listening-ipv6-url` --- ### 📝 Commits (2) - [`553ffd1`](https://github.com/advplyr/audiobookshelf/commit/553ffd1934d16be7a3ba624d1204d9eaf327bd47) Fix listening url log with ipv6 host - [`138bb56`](https://github.com/advplyr/audiobookshelf/commit/138bb563b882285ddff24e1e70e21ef7561ccb96) Update ipv6 server listening log ### 📊 Changes **1 file changed** (+2 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `server/Server.js` (+2 -1) </details> ### 📄 Description <!-- For Work In Progress Pull Requests, please use the Draft PR feature, see https://github.blog/2019-02-14-introducing-draft-pull-requests/ for further details. If you do not follow this template, the PR may be closed without review. Please ensure all checks pass. If you are a new contributor, the workflows will need to be manually approved before they run. --> ## Brief summary Fix incorrect listening url in log when use ipv6 host ## In-depth Description Run with ipv6 host return incorrect url in log: ``` > node index.js --host :: ... [2025-08-16 17:55:56.554] INFO: Listening on http://:::12378 ... ``` After change: ``` > node index.js --host :: ... [2025-08-16 17:55:56.554] INFO: Listening on http://[::]:12378 ... ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2026-04-25 00:19:10 +02:00
adam closed this issue 2026-04-25 00:19:10 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/audiobookshelf#4296