aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Helpers/AudioHelper.cs
diff options
context:
space:
mode:
authorKonH <konh@yandex.ru>2021-10-03 11:00:45 +0700
committerKonH <konh@yandex.ru>2021-10-03 11:01:40 +0700
commite3fccd5ae67b44be1fa44e82fb0954f29cc825ef (patch)
tree275d5ede32bde317ee709a0c58e0a44b50aefce5 /Jellyfin.Api/Helpers/AudioHelper.cs
parentb6bf43af4590579a1902552ed1b1eaaa4946f7b3 (diff)
Fix warning: Qualifier is redundant (#2149)
Diffstat (limited to 'Jellyfin.Api/Helpers/AudioHelper.cs')
-rw-r--r--Jellyfin.Api/Helpers/AudioHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Helpers/AudioHelper.cs b/Jellyfin.Api/Helpers/AudioHelper.cs
index a5e47b8ec..bec961dad 100644
--- a/Jellyfin.Api/Helpers/AudioHelper.cs
+++ b/Jellyfin.Api/Helpers/AudioHelper.cs
@@ -147,7 +147,7 @@ namespace Jellyfin.Api.Helpers
}
var outputPath = state.OutputFilePath;
- var outputPathExists = System.IO.File.Exists(outputPath);
+ var outputPathExists = File.Exists(outputPath);
var transcodingJob = _transcodingJobHelper.GetTranscodingJob(outputPath, TranscodingJobType.Progressive);
var isTranscodeCached = outputPathExists && transcodingJob != null;