mirror of https://github.com/zulip/zulip.git
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:
parent
e5c92a1ee6
commit
7eb34529e6
|
@ -290,7 +290,7 @@ function create_stream() {
|
|||
// with i18n. And likely we should be reporting the
|
||||
// error text directly rather than turning it into
|
||||
// "Error creating stream"?
|
||||
stream_name_error.report_already_exists(stream_name);
|
||||
stream_name_error.report_already_exists();
|
||||
stream_name_error.select();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue