Skip to content

Commit 39b9624

Browse files
save file
1 parent 0fc259b commit 39b9624

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

html/chat-room/chat-room.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@
217217

218218
post.start = async function(){
219219

220-
var result = await post('start',{room_id});
220+
var result = await post('simple/start',{room_id});
221221
if(!result)return;
222222

223223
display.result(result);
@@ -241,7 +241,7 @@
241241
post.del = async function({id,password}){
242242

243243
var ts = display.last;
244-
var result = await post('del',{room_id,id,password,ts});
244+
var result = await post('simepl/del',{room_id,id,password,ts});
245245
if(!result)return;
246246

247247
display.result(result);
@@ -252,7 +252,7 @@
252252
post.update = async function(){
253253

254254
var ts = display.last;
255-
var result = await post('update',{room_id,ts});
255+
var result = await post('simple/update',{room_id,ts});
256256
if(!result)return;
257257

258258
display.result(result);

0 commit comments

Comments
 (0)