Skip to content

Commit 1150d9c

Browse files
save file
1 parent 0a332c9 commit 1150d9c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

html/chat-room-tmp/chat-room-tmp.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@
480480

481481
post.start = async function(){
482482

483-
var result = await post('/start',{room});
483+
var result = await post('start',{room});
484484
if(!result)return;
485485

486486
var list = result.list;
@@ -494,7 +494,7 @@
494494
post.update = async function(){
495495

496496
var ts = msgs.at(-1).ts;
497-
var result = await post('/update',{room,ts});
497+
var result = await post('update',{room,ts});
498498
if(!result)return;
499499

500500
var list = result.list;
@@ -524,7 +524,7 @@
524524
}
525525

526526
var ts = msgs.at(-1).ts;
527-
var result = await post('/msg',{room,user,password,txt,ts});
527+
var result = await post('msg',{room,user,password,txt,ts});
528528
if(!result)return;
529529

530530
var list = result.list;
@@ -543,7 +543,7 @@
543543
}
544544

545545
var ts = msgs.at(-1).ts;
546-
var result = await post('/del',{room,id,password,ts});
546+
var result = await post('del',{room,id,password,ts});
547547
if(!result)return;
548548

549549
var list = result.list;

0 commit comments

Comments
 (0)