mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-17 23:56:44 +00:00
update legacy hd homerun support
This commit is contained in:
@@ -195,13 +195,12 @@ namespace Emby.Server.Implementations.Devices
|
||||
}
|
||||
|
||||
var config = _config.GetUploadOptions();
|
||||
if (!string.IsNullOrWhiteSpace(config.CameraUploadPath))
|
||||
var path = config.CameraUploadPath;
|
||||
if (string.IsNullOrWhiteSpace(path))
|
||||
{
|
||||
return config.CameraUploadPath;
|
||||
path = DefaultCameraUploadsPath;
|
||||
}
|
||||
|
||||
var path = DefaultCameraUploadsPath;
|
||||
|
||||
if (config.EnableCameraUploadSubfolders)
|
||||
{
|
||||
path = Path.Combine(path, _fileSystem.GetValidFilename(device.Name));
|
||||
|
||||
Reference in New Issue
Block a user