mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
commit
c27e415471
@ -909,7 +909,10 @@ namespace MediaBrowser.Server.Implementations.Library
|
|||||||
throw new ArgumentNullException("name");
|
throw new ArgumentNullException("name");
|
||||||
}
|
}
|
||||||
|
|
||||||
var validFilename = _fileSystem.GetValidFilename(name).Trim();
|
// Trim the period at the end because windows will have a hard time with that
|
||||||
|
var validFilename = _fileSystem.GetValidFilename(name)
|
||||||
|
.Trim()
|
||||||
|
.TrimEnd('.');
|
||||||
|
|
||||||
string subFolderPrefix = null;
|
string subFolderPrefix = null;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user