mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-27 19:24:47 +03:00
consolidate emby.server.core into emby.server.implementations
This commit is contained in:
@@ -118,12 +118,11 @@ namespace MediaBrowser.Api.System
|
||||
|
||||
public object Get(GetServerLogs request)
|
||||
{
|
||||
List<FileSystemMetadata> files;
|
||||
IEnumerable<FileSystemMetadata> files;
|
||||
|
||||
try
|
||||
{
|
||||
files = _fileSystem.GetFiles(_appPaths.LogDirectoryPath, new[] { ".txt" }, true, false)
|
||||
.ToList();
|
||||
files = _fileSystem.GetFiles(_appPaths.LogDirectoryPath, new[] { ".txt" }, true, false);
|
||||
}
|
||||
catch (IOException)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user