From 2be34ed06390f393ec60933fb315124f3b86eb6c Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Sun, 22 Aug 2021 13:54:39 +0100 Subject: [PATCH] quote jellyfin URL for censoring in logs --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 603291f..a6ee6ed 100644 --- a/main.go +++ b/main.go @@ -434,7 +434,7 @@ func start(asDaemon, firstCall bool) { if status != 200 || err != nil { app.err.Fatalf("Failed to authenticate with Jellyfin @ \"%s\" (%d): %v", server, status, err) } - app.info.Printf("Authenticated with %s", server) + app.info.Printf("Authenticated with \"%s\"", server) runMigrations(app)