(self,data,sendResponse)
| 100 | sendResponse({'success': 'no-error'}) |
| 101 | |
| 102 | def stopStreaming(self,data,sendResponse): |
| 103 | |
| 104 | if cameraManager().closeLocalVideoSession(sessionId): |
| 105 | sendResponse({'success': 'no-error'}) |
| 106 | |
| 107 | return |
| 108 | |
| 109 | else: |
| 110 | sendResponse({'stop_streaming_error': True}) |
no test coverage detected