disable IS_PAD_PINNED

This commit is contained in:
ansuz 2020-03-12 11:31:08 -04:00
parent 96b92f472c
commit 1230057970
2 changed files with 2 additions and 1 deletions

View File

@ -546,6 +546,7 @@ const deferResponse = function (Env, channel, cb) {
};
Pinning.isChannelPinned = function (Env, channel, cb) {
return void cb(void 0, true); // XXX
// if the pins are fully loaded then you can answer yes/no definitively
if (Env.pinsLoaded) {
return void cb(void 0, !isEmpty(Env.pinnedPads[channel]));

View File

@ -198,7 +198,7 @@ RPC.create = function (Env, cb) {
updateLimitDaily();
Env.intervals.dailyLimitUpdate = setInterval(updateLimitDaily, 24*3600*1000);
Pinning.loadChannelPins(Env);
//Pinning.loadChannelPins(Env); // XXX
// expire old sessions once per minute
Env.intervals.sessionExpirationInterval = setInterval(function () {