diff options
| author | KonH <konh@yandex.ru> | 2021-10-03 11:00:45 +0700 |
|---|---|---|
| committer | KonH <konh@yandex.ru> | 2021-10-03 11:01:40 +0700 |
| commit | e3fccd5ae67b44be1fa44e82fb0954f29cc825ef (patch) | |
| tree | 275d5ede32bde317ee709a0c58e0a44b50aefce5 /Jellyfin.Api/Helpers/AudioHelper.cs | |
| parent | b6bf43af4590579a1902552ed1b1eaaa4946f7b3 (diff) | |
Fix warning: Qualifier is redundant (#2149)
Diffstat (limited to 'Jellyfin.Api/Helpers/AudioHelper.cs')
| -rw-r--r-- | Jellyfin.Api/Helpers/AudioHelper.cs | 2 |
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; |
