Skip to content

Commit

Permalink
Update variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
codeconscious committed May 28, 2024
1 parent 156f90c commit f795a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AudioTagger.Console/MediaFileRenamer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ static string GenerateFileNameViaRenamePatterns(
StringBuilder workingFileName =
fileTagNames.Aggregate(
new StringBuilder(renamePattern),
(working, tagName) => ReplacePlaceholders(working, tagName)
(workingName, tagName) => ReplacePlaceholders(workingName, tagName)
);

var ext = Path.GetExtension(file.FileNameOnly);
Expand Down

0 comments on commit f795a72

Please sign in to comment.