From 66bd18fdc5ae5fe95080c1e0d44e1a2cc8c05516 Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Thu, 1 Jul 2021 17:58:02 -0600 Subject: [PATCH] Fixed typo. --- AaxDecrypter/Chapters.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AaxDecrypter/Chapters.cs b/AaxDecrypter/Chapters.cs index fedc3b40..bb8275da 100644 --- a/AaxDecrypter/Chapters.cs +++ b/AaxDecrypter/Chapters.cs @@ -23,8 +23,8 @@ namespace AaxDecrypter Arguments = "-loglevel panic -show_chapters -print_format json \"" + audiobookFile + "\"" }; - var xml = info.RunHidden().Output; - var chapterJObject = JObject.Parse(xml); + var jString = info.RunHidden().Output; + var chapterJObject = JObject.Parse(jString); var chapters = chapterJObject["chapters"] .Select(c => new Chapter( c["tags"]?["title"]?.Value(),