mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Some lowercase errors in channelnames
This commit is contained in:
@@ -288,7 +288,6 @@ io.on('connection', function(socket){
|
|||||||
//io.sockets.emit(coll, ["added", {"_id": "asd", "added":get_time(),"guids":guids,"id":id,"now_playing":np,"title":title,"votes":votes, "duration":duration}]);
|
//io.sockets.emit(coll, ["added", {"_id": "asd", "added":get_time(),"guids":guids,"id":id,"now_playing":np,"title":title,"votes":votes, "duration":duration}]);
|
||||||
//io.sockets.emit(coll, ["added", {"_id": "asd", "added":get_time(),"guids":guids,"id":id,"now_playing":np,"title":title,"votes":votes, "duration":duration}]);
|
//io.sockets.emit(coll, ["added", {"_id": "asd", "added":get_time(),"guids":guids,"id":id,"now_playing":np,"title":title,"votes":votes, "duration":duration}]);
|
||||||
io.to(coll).emit(coll, ["added", {"_id": "asd", "added":get_time(),"guids":guids,"id":id,"now_playing":np,"title":title,"votes":votes, "duration":duration}]);
|
io.to(coll).emit(coll, ["added", {"_id": "asd", "added":get_time(),"guids":guids,"id":id,"now_playing":np,"title":title,"votes":votes, "duration":duration}]);
|
||||||
|
|
||||||
if(np)
|
if(np)
|
||||||
{
|
{
|
||||||
send_play(coll, undefined);
|
send_play(coll, undefined);
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ var list;
|
|||||||
var toSend = "";
|
var toSend = "";
|
||||||
var sendURL;
|
var sendURL;
|
||||||
var showToggle =true;
|
var showToggle =true;
|
||||||
var chan = $("#chan").html();
|
var chan = $("#chan").html().toLowerCase();
|
||||||
var list_html = $("#list-song-html").html();
|
var list_html = $("#list-song-html").html();
|
||||||
var hasadmin=0;
|
var hasadmin=0;
|
||||||
var w_p = true;
|
var w_p = true;
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ var longS = 0;
|
|||||||
var frontpage = 1;
|
var frontpage = 1;
|
||||||
var adminpass = "";
|
var adminpass = "";
|
||||||
var filesadded="";
|
var filesadded="";
|
||||||
var chan = $("#chan").html();
|
var chan = $("#chan").html().toLowerCase();
|
||||||
var player_ready = false;
|
var player_ready = false;
|
||||||
var seekTo;
|
var seekTo;
|
||||||
var song_title;
|
var song_title;
|
||||||
|
|||||||
Reference in New Issue
Block a user