Remove key check

This commit is contained in:
lowlighter
2020-10-23 14:17:11 +02:00
parent 4ccefcae83
commit 26bc499ef7
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -3,7 +3,7 @@
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if (!enabled) if (!enabled)
return computed.plugins.followup = null return computed.plugins.followup = null
if (("followup" in q)&&(!q.followup)) if (!q.followup)
return computed.plugins.followup = null return computed.plugins.followup = null
console.debug(`metrics/compute/${login}/plugins > followup`) console.debug(`metrics/compute/${login}/plugins > followup`)
computed.svg.height += 70 computed.svg.height += 70

View File

@@ -3,7 +3,7 @@
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if (!enabled) if (!enabled)
return computed.plugins.languages = null return computed.plugins.languages = null
if (("languages" in q)&&(!q.languages)) if (!q.languages)
return computed.plugins.languages = null return computed.plugins.languages = null
console.debug(`metrics/compute/${login}/plugins > languages`) console.debug(`metrics/compute/${login}/plugins > languages`)
computed.svg.height += 90 computed.svg.height += 90