diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-11-02 04:03:36 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-02 04:03:36 +0900 |
| commit | 3bfb36a67d1ace11b73c25699efe3136025cf2ed (patch) | |
| tree | d3b16b8897929eab3abd8ab2cd8cc8fc1e8c1dad /Emby.Server.Implementations/LiveTv | |
| parent | 48a99366b6bd0fea13fb40c6c16374052d5adb6d (diff) | |
| parent | 60cb256835ff7601ee8ad7deefe52c1ef1c3b305 (diff) | |
Merge pull request #1915 from Bond-009/hex
Rewrite hex encoder/decoder
Diffstat (limited to 'Emby.Server.Implementations/LiveTv')
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/LiveTvManager.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs index 49308b2b1..d4bd598e3 100644 --- a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs +++ b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs @@ -2304,8 +2304,10 @@ namespace Emby.Server.Implementations.LiveTv if (provider == null) { throw new ResourceNotFoundException( - string.Format("Couldn't find provider of type: '{0}'", info.Type) - ); + string.Format( + CultureInfo.InvariantCulture, + "Couldn't find provider of type: '{0}'", + info.Type)); } await provider.Validate(info, validateLogin, validateListings).ConfigureAwait(false); |
