diff --git a/SS14.Launcher/ViewModels/MainWindowTabs/PatchesTabViewModel.cs b/SS14.Launcher/ViewModels/MainWindowTabs/PatchesTabViewModel.cs index c9a82c8..a642410 100644 --- a/SS14.Launcher/ViewModels/MainWindowTabs/PatchesTabViewModel.cs +++ b/SS14.Launcher/ViewModels/MainWindowTabs/PatchesTabViewModel.cs @@ -63,11 +63,11 @@ public class PathToFileNameConverter : IValueConverter public object? Convert(object value, Type targetType, object parameter, CultureInfo culture) { var path = value as string; - return System.IO.Path.GetFileName(path); + return Path.GetFileName(path); } public object? ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture) { - throw new NotImplementedException(); + return value; } } \ No newline at end of file