diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-02-03 15:52:56 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-02-03 15:52:56 -0500 |
| commit | 9c86c8fe2b7179e319d6dd7a961ed44c2a8abb3d (patch) | |
| tree | 552ece6f215953b3a921e4119b5615c63ff2a195 /Emby.Server.Implementations | |
| parent | 29898ce5388ac44e006a5195fccdfb13af758e19 (diff) | |
add library monitor error handling
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/LiveTvManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs index ff76f6bef..9f0d3a225 100644 --- a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs +++ b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs @@ -2112,7 +2112,7 @@ namespace Emby.Server.Implementations.LiveTv if (timer == null) { - throw new ResourceNotFoundException(string.Format("Timer with Id {0} not found", id)); + throw new ResourceNotFoundException(string.Format("SeriesTimer with Id {0} not found", id)); } var service = GetService(timer.ServiceName); |
