瀏覽代碼

better crash protection

Nathaniel van Diepen 11 年之前
父節點
當前提交
4b24d34979
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      app/OmnomIRC.js

+ 3 - 1
app/OmnomIRC.js

@@ -83,7 +83,9 @@ io.sockets.on('connection',function(socket){
 			room;
 		for(i in rooms){
 			if(rooms[i] != '' && typeof rooms[i] == 'string'){
-				room = rooms[i].substr(1);
+				try{
+					room = rooms[i].substr(1);
+				}catch(e){}
 				sendUserList(names);
 			}
 		}