diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-26 23:09:07 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-28 22:10:50 +0100 |
| commit | b9a111432a8c85cd6cd2bb6c80ba3acd8a27409d (patch) | |
| tree | e954366643b196ba8629be9a4b989def2a3d05a8 /Emby.Server.Implementations/ResourceFileManager.cs | |
| parent | 581a7fe078002785b9ba628ec139a42d678cdf25 (diff) | |
Unwrapped all /(Write|Read)All(Text|Bytes)/ functions.
Diffstat (limited to 'Emby.Server.Implementations/ResourceFileManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/ResourceFileManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ResourceFileManager.cs b/Emby.Server.Implementations/ResourceFileManager.cs index 8c1f765e2..890d848f4 100644 --- a/Emby.Server.Implementations/ResourceFileManager.cs +++ b/Emby.Server.Implementations/ResourceFileManager.cs @@ -37,7 +37,7 @@ namespace Emby.Server.Implementations public string ReadAllText(string basePath, string virtualPath) { - return _fileSystem.ReadAllText(GetResourcePath(basePath, virtualPath)); + return File.ReadAllText(GetResourcePath(basePath, virtualPath)); } private string GetResourcePath(string basePath, string virtualPath) |
