diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-11 21:38:43 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-11 21:38:43 -0500 |
| commit | 355edfa2020d19b0fba6b09da40de4e66395d4b7 (patch) | |
| tree | 5773d2680ce27dde523cbc10a4ba6e4427bd88a5 | |
| parent | fb0ac1ab457f02d391035a752bd45a681549e1b5 (diff) | |
ensure recording filename is unique
| -rw-r--r-- | MediaBrowser.Server.Implementations/LiveTv/EmbyTV/RecordingHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/RecordingHelper.cs b/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/RecordingHelper.cs index 3ee808bb5..a5c869d45 100644 --- a/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/RecordingHelper.cs +++ b/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/RecordingHelper.cs @@ -73,7 +73,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV } else { - name += " " + info.StartDate.ToString("yyyy-MM-dd"); + name += " " + info.StartDate.ToString("yyyy-MM-dd") + " " + info.Id; } return name; |
