Merge branch 'staging' into communities-allow-list

This commit is contained in:
ansuz
2020-02-17 10:38:40 -05:00
2 changed files with 4 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ const WriteQueue = require("./write-queue");
const BatchRead = require("./batch-read"); const BatchRead = require("./batch-read");
const RPC = require("./rpc"); const RPC = require("./rpc");
const HK = require("./hk-util.js"); const HK = require("./hk-util.js");
const Core = require("./commands/core");
const Store = require("./storage/file"); const Store = require("./storage/file");
const BlobStore = require("./storage/blob"); const BlobStore = require("./storage/blob");
@@ -54,7 +55,6 @@ module.exports.create = function (config, cb) {
limits: {}, limits: {},
admins: [], admins: [],
Log: Log,
WARN: WARN, WARN: WARN,
flushCache: config.flushCache, flushCache: config.flushCache,
adminEmail: config.adminEmail, adminEmail: config.adminEmail,
@@ -149,7 +149,7 @@ module.exports.create = function (config, cb) {
blobStagingPath: config.blobStagingPath, blobStagingPath: config.blobStagingPath,
archivePath: config.archivePath, archivePath: config.archivePath,
getSession: function (safeKey) { getSession: function (safeKey) {
return Core.getSession(Sessions, safeKey); return Core.getSession(Env.Sessions, safeKey);
}, },
}, w(function (err, blob) { }, w(function (err, blob) {
if (err) { throw new Error(err); } if (err) { throw new Error(err); }

View File

@@ -970,6 +970,8 @@ var trimChannel = function (env, channelName, hash, _cb) {
} }
var msg = Util.tryParse(s_msg); var msg = Util.tryParse(s_msg);
if (!msg) { return void readMore(); }
var msgHash = Extras.getHash(msg[4]); var msgHash = Extras.getHash(msg[4]);
if (msgHash === hash) { if (msgHash === hash) {