mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Merge pull request #2240 from anthonylavado/fix-pathfinding
Re-order the path statement to avoid file issues
This commit is contained in:
commit
124a852787
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ namespace Emby.Server.Implementations.IO
|
||||||
}
|
}
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return Path.Combine(Path.GetFullPath(folderPath), filePath);
|
return Path.GetFullPath(Path.Combine(folderPath, filePath));
|
||||||
}
|
}
|
||||||
catch (ArgumentException)
|
catch (ArgumentException)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue