mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-31 03:11:07 +02:00
Minor XML tweaks for Metadata
This commit is contained in:
parent
6f57b83822
commit
27646310a1
@ -11,6 +11,8 @@ public class EnvironmentProvider
|
||||
public const string NZBDRONE_PID = "NZBDRONE_PID";
|
||||
public const string ROOT_MARKER = "NzbDrone.Web";
|
||||
|
||||
public static readonly char[] NewLineChars = Environment.NewLine.ToCharArray();
|
||||
|
||||
private static readonly string processName = Process.GetCurrentProcess().ProcessName.ToLower();
|
||||
|
||||
private static readonly EnvironmentProvider instance = new EnvironmentProvider();
|
||||
|
@ -194,11 +194,12 @@ public override void CreateForEpisodeFile(EpisodeFile episodeFile, TvdbSeries tv
|
||||
doc.Save(xw);
|
||||
|
||||
xmlResult += doc.ToString();
|
||||
xmlResult += Environment.NewLine;
|
||||
}
|
||||
}
|
||||
var filename = episodeFile.Path.Replace(Path.GetExtension(episodeFile.Path), ".nfo");
|
||||
_logger.Debug("Saving episodedetails to: {0}", filename);
|
||||
_diskProvider.WriteAllText(filename, xmlResult);
|
||||
_diskProvider.WriteAllText(filename, xmlResult.Trim(EnvironmentProvider.NewLineChars));
|
||||
}
|
||||
|
||||
public override void RemoveForSeries(Series series)
|
||||
|
Loading…
Reference in New Issue
Block a user