|
@@ -249,7 +249,7 @@ namespace Emby.Server.Implementations.IO
|
|
|
// Issue #2354 get the size of files behind symbolic links
|
|
|
if (fileInfo.Attributes.HasFlag(FileAttributes.ReparsePoint))
|
|
|
{
|
|
|
- using (Stream thisFileStream = File.OpenRead(fileInfo.ToString()))
|
|
|
+ using (Stream thisFileStream = File.OpenRead(fileInfo.FullName))
|
|
|
{
|
|
|
result.Length = thisFileStream.Length;
|
|
|
}
|