aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IFileSystem.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2022-01-22 15:40:05 +0100
committerBond_009 <bond.009@outlook.com>2022-02-14 14:46:04 +0100
commit1c14c86b20f695f7344f72d7c1c67ea4334f81f4 (patch)
tree3dc36495db05ba6e90cb518e5410644e75635fd5 /MediaBrowser.Model/IO/IFileSystem.cs
parent68e7072698dafe7df1bd272df331c2ccc8134391 (diff)
Fix some warnings
Diffstat (limited to 'MediaBrowser.Model/IO/IFileSystem.cs')
-rw-r--r--MediaBrowser.Model/IO/IFileSystem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/IO/IFileSystem.cs b/MediaBrowser.Model/IO/IFileSystem.cs
index 0f77d6b5b..7207795b0 100644
--- a/MediaBrowser.Model/IO/IFileSystem.cs
+++ b/MediaBrowser.Model/IO/IFileSystem.cs
@@ -199,6 +199,6 @@ namespace MediaBrowser.Model.IO
void SetAttributes(string path, bool isHidden, bool readOnly);
- List<FileSystemMetadata> GetDrives();
+ IEnumerable<FileSystemMetadata> GetDrives();
}
}