From 60ecf966701a6729653dd3e1c6f06201adbab5f4 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Tue, 11 Jun 2013 23:44:16 -0400 Subject: [PATCH] Fix temporary videos affecting library --- channel.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/channel.js b/channel.js index 867246be..ee634fdc 100644 --- a/channel.js +++ b/channel.js @@ -332,6 +332,8 @@ Channel.prototype.seen = function(ip, name) { } Channel.prototype.cacheMedia = function(media) { + // Prevent the copy in the playlist from messing with this one + media = media.dup(); if(media.temp) { return; }