enforce asynchrony in 'gethistoryOffset'

This commit is contained in:
ansuz 2020-03-12 11:13:23 -04:00
parent e80a81a2bb
commit bc034d95a3

View File

@ -436,7 +436,8 @@ const storeMessage = function (Env, channel, msg, isCp, optionalMessageHash) {
* -1 if you didn't find it
*/
const getHistoryOffset = (Env, channelName, lastKnownHash, cb) => {
const getHistoryOffset = (Env, channelName, lastKnownHash, _cb) => {
const cb = Util.once(Util.mkAsync(_cb));
const store = Env.store;
const Log = Env.Log;