You've already forked matrix-react-sdk
							
							
				mirror of
				https://github.com/matrix-org/matrix-react-sdk.git
				synced 2025-11-04 11:51:45 +03:00 
			
		
		
		
	Fix View Source accessing renamed private field on MatrixEvent
This commit is contained in:
		
				
					committed by
					
						
						J. Ryan Stinnett
					
				
			
			
				
	
			
			
			
						parent
						
							b380e43e4f
						
					
				
				
					commit
					e79b7d7adb
				
			@@ -55,7 +55,7 @@ export default class ViewSource extends React.Component {
 | 
			
		||||
    viewSourceContent() {
 | 
			
		||||
        const mxEvent = this.props.mxEvent.replacingEvent() || this.props.mxEvent; // show the replacing event, not the original, if it is an edit
 | 
			
		||||
        const isEncrypted = mxEvent.isEncrypted();
 | 
			
		||||
        const decryptedEventSource = mxEvent._clearEvent; // FIXME: _clearEvent is private
 | 
			
		||||
        const decryptedEventSource = mxEvent.clearEvent; // FIXME: clearEvent is private
 | 
			
		||||
        const originalEventSource = mxEvent.event;
 | 
			
		||||
 | 
			
		||||
        if (isEncrypted) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user