use the standard method of checking whether metadata is valid

pull/1/head
ansuz 2020-12-08 16:45:57 +05:30
parent 6bc103be5f
commit 4495d99e49
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ Data.getMetadataRaw = function (Env, channel /* channelName */, _cb) {
Env.batchMetadata(channel, cb, function (done) {
Env.computeMetadata(channel, function (err, meta) {
if (!err && meta && meta.channel) {
if (!err && HK.isMetadataMessage(meta)) {
Env.metadata_cache[channel] = meta;
// clear metadata after a delay if nobody has joined the channel within 30s
Env.checkCache(channel);