1
1
Fork 0
mirror of https://tildegit.org/solderpunk/molly-brown synced 2024-05-10 08:36:03 +02:00

Fix silly mistake in hasty port checking fix.

This commit is contained in:
Solderpunk 2020-06-30 19:11:49 +02:00
parent 4c27911e8f
commit 44af303de6

View File

@ -15,6 +15,7 @@ import (
"path/filepath"
"regexp"
"sort"
"strconv"
"strings"
"time"
)
@ -60,7 +61,7 @@ func handleGeminiRequest(conn net.Conn, config Config, accessLogEntries chan Log
}
// Reject requests for content from other servers
if URL.Hostname() != config.Hostname || (URL.Port() != "" && URL.Port() != config.Port) {
if URL.Hostname() != config.Hostname || (URL.Port() != "" && URL.Port() != strconv.Itoa(config.Port)) {
conn.Write([]byte("53 No proxying to other hosts or ports!\r\n"))
log.Status = 53
return