mirror of https://github.com/zulip/zulip.git
subs: Remove now-unnecssary call to ensure_i18n.
This commit is contained in:
parent
c5b4dacd3b
commit
276b70ffb8
|
@ -478,7 +478,7 @@ exports.setup_page = function (callback) {
|
|||
$(".display-type #stream_settings_title").show();
|
||||
}
|
||||
|
||||
function _populate_and_fill() {
|
||||
function populate_and_fill() {
|
||||
var sub_rows = stream_data.get_streams_for_settings_page();
|
||||
|
||||
$('#subscriptions_table').empty();
|
||||
|
@ -511,12 +511,6 @@ exports.setup_page = function (callback) {
|
|||
}
|
||||
}
|
||||
|
||||
function populate_and_fill() {
|
||||
i18n.ensure_i18n(function () {
|
||||
_populate_and_fill();
|
||||
});
|
||||
}
|
||||
|
||||
populate_and_fill();
|
||||
|
||||
if (!should_list_all_streams()) {
|
||||
|
|
Loading…
Reference in New Issue