Merge branch '3.0' of github.com:calzoneman/sync into 3.0
This commit is contained in:
commit
690ea9dbde
|
@ -1901,7 +1901,7 @@ Channel.prototype.deleteMedia = function (uid, callback) {
|
||||||
*/
|
*/
|
||||||
Channel.prototype.setTemp = function (uid, temp) {
|
Channel.prototype.setTemp = function (uid, temp) {
|
||||||
var item = this.playlist.items.find(uid);
|
var item = this.playlist.items.find(uid);
|
||||||
if (item == null) {
|
if (item === false) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -158,6 +158,8 @@ Server.prototype.unloadChannel = function (chan) {
|
||||||
chan.saveState();
|
chan.saveState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
chan.logger.log("[init] Channel shutting down");
|
||||||
|
|
||||||
chan.playlist.die();
|
chan.playlist.die();
|
||||||
chan.logger.close();
|
chan.logger.close();
|
||||||
for (var i = 0; i < this.channels.length; i++) {
|
for (var i = 0; i < this.channels.length; i++) {
|
||||||
|
|
Loading…
Reference in a new issue