summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-11-10 18:44:10 -0800
committerRose Hogenson <rosehogenson@posteo.net>2025-11-10 18:44:10 -0800
commit106c983dafee46a7b5d4aaf6912dc106155724ce (patch)
tree77184e059f87cf610108df9dfa17998888918f46
parent7fa280987ea3bea7329a598766c118bf09ff7d71 (diff)
downloadroseh.moe-106c983dafee46a7b5d4aaf6912dc106155724ce.tar.zst
Fix jellyfin port
-rw-r--r--roseh.moe.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/roseh.moe.go b/roseh.moe.go
index bf00e81..1b69e71 100644
--- a/roseh.moe.go
+++ b/roseh.moe.go
@@ -569,7 +569,7 @@ func main() {
http.HandleFunc("GET /favicon.ico", favicon)
http.HandleFunc("GET /{$}", index)
http.HandleFunc("GET /", notFound)
- jellyfinURL, err := url.Parse("http://localhost:8192")
+ jellyfinURL, err := url.Parse("http://localhost:8096")
if err != nil {
log.Fatal(err)
}