mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	stream_create.js: Fix function call by removing unnecessary parameter.
The parameter was not being passed because `report_already_exists` takes no parameters.
This commit is contained in:
		@@ -290,7 +290,7 @@ function create_stream() {
 | 
				
			|||||||
                // with i18n.  And likely we should be reporting the
 | 
					                // with i18n.  And likely we should be reporting the
 | 
				
			||||||
                // error text directly rather than turning it into
 | 
					                // error text directly rather than turning it into
 | 
				
			||||||
                // "Error creating stream"?
 | 
					                // "Error creating stream"?
 | 
				
			||||||
                stream_name_error.report_already_exists(stream_name);
 | 
					                stream_name_error.report_already_exists();
 | 
				
			||||||
                stream_name_error.select();
 | 
					                stream_name_error.select();
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user