mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 01:23:32 +09:00
issueTracker의 쪽지 발송 오류 때문에 히스토리가 저장되지 않던 버그 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5050 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
8d61cd768d
commit
7f2c857505
2 changed files with 13 additions and 13 deletions
|
|
@ -88,7 +88,7 @@ String.prototype.setQuery = function(key, val) {
|
|||
for(var i in args) {
|
||||
if( !args.hasOwnProperty(i) ) continue;
|
||||
var arg = args[i];
|
||||
if(!arg.toString().trim()) continue;
|
||||
if(!arg || !arg.toString().trim()) continue;
|
||||
|
||||
q_list[q_list.length] = i+'='+arg;
|
||||
}
|
||||
|
|
@ -971,4 +971,4 @@ function xSleep(sec) {
|
|||
while( sleep.getTime() - now.getTime() < sec) {
|
||||
sleep = new Date();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue