Remove redundant ToString call

This commit is contained in:
Stepan Goremykin
2023-04-06 19:11:45 +02:00
parent 08ce477226
commit 9d738bb601
3 changed files with 3 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ namespace MediaBrowser.Common.Plugins
if (Version is not null && !Directory.Exists(dataFolderPath))
{
// Try again with the version number appended to the folder name.
dataFolderPath += "_" + Version.ToString();
dataFolderPath += "_" + Version;
}
SetAttributes(assemblyFilePath, dataFolderPath, assemblyName.Version);