mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +00:00
Revert "Get unread messages from the server in the web app."
This reverts commit c953759486.
The client side logic for dealing with server counts is actually
fine, as far as we know, but there are still some data-related
issues with cleaning up old unread counts.
This commit is contained in:
@@ -18,6 +18,9 @@ var stream_data = require('js/stream_data.js');
|
|||||||
set_global('stream_data', stream_data);
|
set_global('stream_data', stream_data);
|
||||||
set_global('blueslip', {});
|
set_global('blueslip', {});
|
||||||
set_global('page_params', {});
|
set_global('page_params', {});
|
||||||
|
set_global('feature_flags', {
|
||||||
|
load_server_counts: true,
|
||||||
|
});
|
||||||
|
|
||||||
var Dict = global.Dict;
|
var Dict = global.Dict;
|
||||||
var muting = global.muting;
|
var muting = global.muting;
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ var feature_flags = (function () {
|
|||||||
|
|
||||||
var exports = {};
|
var exports = {};
|
||||||
|
|
||||||
|
exports.load_server_counts = false;
|
||||||
|
|
||||||
// Experimental modification to support much wider message views.
|
// Experimental modification to support much wider message views.
|
||||||
exports.full_width = false;
|
exports.full_width = false;
|
||||||
|
|
||||||
|
|||||||
@@ -480,7 +480,9 @@ exports.load_server_counts = function () {
|
|||||||
};
|
};
|
||||||
|
|
||||||
exports.initialize = function () {
|
exports.initialize = function () {
|
||||||
exports.load_server_counts();
|
if (feature_flags.load_server_counts) {
|
||||||
|
exports.load_server_counts();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return exports;
|
return exports;
|
||||||
|
|||||||
Reference in New Issue
Block a user