Remove key check
This commit is contained in:
2
action/dist/index.js
vendored
2
action/dist/index.js
vendored
File diff suppressed because one or more lines are too long
@@ -3,7 +3,7 @@
|
||||
//Check if plugin is enabled and requirements are met
|
||||
if (!enabled)
|
||||
return computed.plugins.followup = null
|
||||
if (("followup" in q)&&(!q.followup))
|
||||
if (!q.followup)
|
||||
return computed.plugins.followup = null
|
||||
console.debug(`metrics/compute/${login}/plugins > followup`)
|
||||
computed.svg.height += 70
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
//Check if plugin is enabled and requirements are met
|
||||
if (!enabled)
|
||||
return computed.plugins.languages = null
|
||||
if (("languages" in q)&&(!q.languages))
|
||||
if (!q.languages)
|
||||
return computed.plugins.languages = null
|
||||
console.debug(`metrics/compute/${login}/plugins > languages`)
|
||||
computed.svg.height += 90
|
||||
|
||||
Reference in New Issue
Block a user