|
@@ -35,12 +35,11 @@ initLogger('Debug');
|
|
|
path: '/ws',
|
|
|
})
|
|
|
export class MetaGateway
|
|
|
- implements OnGatewayInit, OnGatewayConnection, OnGatewayDisconnect
|
|
|
-{
|
|
|
+ implements OnGatewayInit, OnGatewayConnection, OnGatewayDisconnect {
|
|
|
constructor(
|
|
|
private readonly sceneService: SceneService,
|
|
|
private readonly configService: ConfigService,
|
|
|
- ) {}
|
|
|
+ ) { }
|
|
|
private logger: Logger = new Logger('MetaGateway');
|
|
|
private peer: PeerConnection = null;
|
|
|
private timer: NodeJS.Timeout;
|
|
@@ -269,8 +268,8 @@ export class MetaGateway
|
|
|
|
|
|
const startReply = {
|
|
|
id: 'start',
|
|
|
- data: '{"IsHost":false,"SkinID":"10089","SkinDataVersion":"1008900008","RoomTypeID":""}',
|
|
|
- room_id: 'e629ef3e-022d-4e64-8654-703bb96410eb',
|
|
|
+ data: '{"IsHost":false,"SkinID":"0000000001","SkinDataVersion":"1008900008","RoomTypeID":""}',
|
|
|
+ room_id: 'aea5406a-3099-48db-b428-30917872e58a',
|
|
|
channel_id: '3a1a62e9a3c74de6___channel',
|
|
|
user_id: 'ed58c8d4ce38c',
|
|
|
trace_id: '394df10a-d924-43a9-940d-1dbb41e43f24',
|
|
@@ -287,7 +286,7 @@ export class MetaGateway
|
|
|
}
|
|
|
},
|
|
|
);
|
|
|
- } catch (error) {}
|
|
|
+ } catch (error) { }
|
|
|
}
|
|
|
|
|
|
handleConnection(client: WebSocket, ...args: any[]) {
|