Skip to content

Commit 26bc499

Browse files
committed
Remove key check
1 parent 4ccefca commit 26bc499

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

action/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/plugins/followup/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//Check if plugin is enabled and requirements are met
44
if (!enabled)
55
return computed.plugins.followup = null
6-
if (("followup" in q)&&(!q.followup))
6+
if (!q.followup)
77
return computed.plugins.followup = null
88
console.debug(`metrics/compute/${login}/plugins > followup`)
99
computed.svg.height += 70

src/plugins/languages/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//Check if plugin is enabled and requirements are met
44
if (!enabled)
55
return computed.plugins.languages = null
6-
if (("languages" in q)&&(!q.languages))
6+
if (!q.languages)
77
return computed.plugins.languages = null
88
console.debug(`metrics/compute/${login}/plugins > languages`)
99
computed.svg.height += 90

0 commit comments

Comments
 (0)