Beta to stable #5

Merged
saqut merged 37 commits from beta into stable 2022-12-25 23:24:56 +03:00
3 changed files with 8 additions and 2 deletions
Showing only changes of commit 5b02adde12 - Show all commits

View File

@ -63,6 +63,12 @@ export default class MWSE extends EventTarget {
this.response(from, id, pack); this.response(from, id, pack);
} }
}); });
this.peer('me').emit('request', {
body: pack,
response: (pack: Message) => {
this.response(from, id, pack);
}
});
}) })
this.EventPooling.signal('pack/room',(payload : {to:string,pack:any}) => { this.EventPooling.signal('pack/room',(payload : {to:string,pack:any}) => {
let {to,pack} = payload; let {to,pack} = payload;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long