aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-11 21:38:43 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-12 01:46:20 -0500
commit72120e0de5430cec167ee200b1c6880a4898e33d (patch)
tree09f81ec04250596d56f74a395cceb7a4debbc831 /MediaBrowser.Server.Implementations
parent3f17949f252ec5dbc3fd00223eea1da81c0a49e4 (diff)
ensure recording filename is unique
Diffstat (limited to 'MediaBrowser.Server.Implementations')
-rw-r--r--MediaBrowser.Server.Implementations/LiveTv/EmbyTV/RecordingHelper.cs2
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;