You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version of WAVNCController>>#renderContentOn: crashed because the RFBServer class return nil if there is no running instance. A simple change to test for nil first solves this -
renderContentOn: html
html heading: 'VNC Server'.
self serverInstance
ifNil: [self renderStartOn: html]
ifNotNil:
[self isServerRunning
ifTrue: [ self renderStopOn: html ]
ifFalse: [ self renderStartOn: html ]].
html heading: 'UI Process'.
self uiProcess isSuspended
ifFalse: [ self renderSuspendOn: html ]
ifTrue: [ self renderResumeOn: html ]
The RFBServer class also needs a small fix to provide an #isRunning method, but that is easy to solve and already committed in https://source.squeak.org/ss/RFB-tpr.23
The text was updated successfully, but these errors were encountered:
The current version of WAVNCController>>#renderContentOn: crashed because the RFBServer class return nil if there is no running instance. A simple change to test for nil first solves this -
The RFBServer class also needs a small fix to provide an #isRunning method, but that is easy to solve and already committed in https://source.squeak.org/ss/RFB-tpr.23
The text was updated successfully, but these errors were encountered: