aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/Devices
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common.Implementations/Devices')
-rw-r--r--MediaBrowser.Common.Implementations/Devices/DeviceId.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common.Implementations/Devices/DeviceId.cs b/MediaBrowser.Common.Implementations/Devices/DeviceId.cs
index 02edc493a..39f11fabf 100644
--- a/MediaBrowser.Common.Implementations/Devices/DeviceId.cs
+++ b/MediaBrowser.Common.Implementations/Devices/DeviceId.cs
@@ -26,7 +26,7 @@ namespace MediaBrowser.Common.Implementations.Devices
{
lock (_syncLock)
{
- var value = _fileSystem.ReadAllText(CachePath, Encoding.UTF8);
+ var value = File.ReadAllText(CachePath, Encoding.UTF8);
Guid guid;
if (Guid.TryParse(value, out guid))