We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a90234 commit c4693beCopy full SHA for c4693be
1 file changed
html/chat-room/chat-room.html
@@ -218,7 +218,7 @@
218
219
post.start = async function(){
220
221
- var result = await post('simple/start',{room_id});
+ var result = await post('start',{room_id});
222
if(!result)return;
223
224
display.result(result);
@@ -257,7 +257,7 @@
257
post.update = async function(){
258
259
var ts = display.last;
260
- var result = await post('simple/update',{room_id,ts});
+ var result = await post('update',{room_id,ts});
261
262
263
0 commit comments