From aaef6ce6f3b62ed4e13220ff6495b1e4fffdeaf7 Mon Sep 17 00:00:00 2001 From: Xpl0itU <24777100+Xpl0itU@users.noreply.github.com> Date: Sun, 23 Jul 2023 13:06:28 +0200 Subject: [PATCH] Don't add ./ to certificate path --- downloader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/downloader.go b/downloader.go index 68de097..617ff21 100644 --- a/downloader.go +++ b/downloader.go @@ -223,7 +223,7 @@ func DownloadTitle(titleID string, outputDirectory string, doDecryption bool, pr return err } defer certFile.Close() - logger.Info("Certificate saved to ./%v \n", certPath) + logger.Info("Certificate saved to %v \n", certPath) c, err := aes.NewCipher(commonKey) if err != nil {