File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,16 +10,16 @@ declare var WEBSOCKET_URL: string;
1010// Extend the MessageRecv to allow the engine version to exist as part of our config message from the signalling server
1111class MessageExtendedConfig extends MessageRecv {
1212 peerConnectionOptions : RTCConfiguration ;
13- engineVersion : string
14- platform : string
15- frontendToSendOffer : boolean
13+ engineVersion : string ;
14+ platform : string ;
15+ frontendToSendOffer : boolean ;
1616} ;
1717
1818// Extend PixelStreaming to use our custom extended config that includes the engine version
1919class ScalablePixelStreaming extends PixelStreaming {
2020 // Create a new method that retains original functionality
2121 public handleOnConfig ( messageExtendedConfig : MessageExtendedConfig ) {
22- this . _webRtcController . handleOnConfigMessage ( messageExtendedConfig )
22+ this . _webRtcController . handleOnConfigMessage ( messageExtendedConfig ) ;
2323 }
2424} ;
2525
@@ -31,7 +31,7 @@ document.body.onload = function () {
3131 // make usage of WEBSOCKET_URL if it is not empty
3232 let webSocketAddress = WEBSOCKET_URL ;
3333 if ( webSocketAddress != "" ) {
34- config . setTextSetting ( TextParameters . SignallingServerUrl , webSocketAddress )
34+ config . setTextSetting ( TextParameters . SignallingServerUrl , webSocketAddress ) ;
3535 }
3636
3737 // Create stream and spsApplication instances that implement the Epic Games Pixel Streaming Frontend PixelStreaming and Application types
You can’t perform that action at this time.
0 commit comments