diff --git a/package.json b/package.json index 55f566b8..d8b32671 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Calvin Montgomery", "name": "CyTube", "description": "Online media synchronizer and chat", - "version": "3.39.5", + "version": "3.39.6", "repository": { "url": "http://github.com/calzoneman/sync" }, diff --git a/src/channel/playlist.js b/src/channel/playlist.js index 68e5e9e8..a438939d 100644 --- a/src/channel/playlist.js +++ b/src/channel/playlist.js @@ -151,13 +151,7 @@ PlaylistModule.prototype.load = function (data) { }; PlaylistModule.prototype.save = function (data) { - var arr = this.items.toArray().map(function (item) { - /* Clear Google Docs/Google+ and Vimeo meta */ - if (item.media && item.media.meta) { - delete item.media.meta.direct; - } - return item; - }); + var arr = this.items.toArray(); var pos = 0; for (var i = 0; i < arr.length; i++) { if (this.current && arr[i].uid == this.current.uid) {