mirror of https://github.com/calzoneman/sync.git
Restrict moderators too
This commit is contained in:
parent
40f3e875a8
commit
40020684b8
|
@ -1159,9 +1159,16 @@ Channel.prototype.tryQueue = function(user, data) {
|
|||
return;
|
||||
}
|
||||
|
||||
if(user.rank < Rank.Moderator && this.playlist.count(data.id) > 10) {
|
||||
var count = this.playlist.count(data.id);
|
||||
|
||||
if(user.rank < Rank.Moderator && count > 5) {
|
||||
user.socket.emit("queueFail", "That video is already on the " +
|
||||
"playlist 10 times.");
|
||||
return;
|
||||
} else if(user.rank < Rank.Siteadmin && count > 20) {
|
||||
user.socket.emit("queueFail", "That video is already on the " +
|
||||
"playlist 20 times.");
|
||||
return;
|
||||
}
|
||||
|
||||
data.queueby = user ? user.name : "";
|
||||
|
|
Loading…
Reference in New Issue