mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 02:53:10 +02:00
Use string interpolation
Two further review comments from JustAMan.
This commit is contained in:
parent
d8d237f6f2
commit
69ea15f73a
1 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
case _unknown:
|
||||
return "Unknown";
|
||||
default:
|
||||
return string.Format("{0}.{1}",_major,_minor);
|
||||
return $"{_major}.{_minor}";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -150,7 +150,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
}
|
||||
else
|
||||
{
|
||||
// Version is ok so no warning required
|
||||
_logger.LogInformation("FFmpeg validation: Found suitable ffmpeg version");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue