Skip to content

Commit

Permalink
All - Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Oct 21, 2023
1 parent c733e49 commit 69f6372
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion NickvisionTagger.GNOME/Controls/MusicFileRow.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using NickvisionTagger.GNOME.Helpers;
using NickvisionTagger.Shared.Models;
using System;
using System.Text.RegularExpressions;

namespace NickvisionTagger.GNOME.Controls;

Expand Down
2 changes: 1 addition & 1 deletion NickvisionTagger.Shared/Models/MusicFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public string Filename
newFilename += _dotExtension;
}
var invalidCharacters = _invalidSystemFilenameCharacters;
if(!RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && LimitFilenameCharacters)
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && LimitFilenameCharacters)
{
invalidCharacters = _invalidSystemFilenameCharacters.Union(_invalidWindowsFilenameCharacters);
}
Expand Down

0 comments on commit 69f6372

Please sign in to comment.