WPF: Fix typo

This commit is contained in:
genteure 2021-12-18 20:38:27 +08:00
parent 7c2e2e0ee5
commit 2e1f8d8c05

View File

@ -57,13 +57,13 @@ namespace BililiveRecorder.WPF
{ {
try try
{ {
logger.Debug("Writing path file at {FilePathj}", this.filePath); logger.Debug("Writing path file at {FilePath}", this.filePath);
var str = JsonConvert.SerializeObject(data); var str = JsonConvert.SerializeObject(data);
Core.Config.ConfigParser.WriteAllTextWithBackup(this.filePath, str); Core.Config.ConfigParser.WriteAllTextWithBackup(this.filePath, str);
} }
catch (Exception ex) catch (Exception ex)
{ {
logger.Warning(ex, "Error writing path file at {FilePathj}", this.filePath); logger.Warning(ex, "Error writing path file at {FilePath}", this.filePath);
} }
} }