Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hardillb committed Nov 11, 2024
1 parent 5a447d7 commit 2dc53b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge/ee/lib/teamBroker/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module.exports.init = function (app) {
const keys = Object.keys(topicsList)
for (let i = 0; i < keys.length; i++) {
const teamTopics = Object.keys(topicsList[keys[i]])
for (let j = 0; j< teamTopics.length; j++) {
for (let j = 0; j < teamTopics.length; j++) {
if (topicsList[keys[i]][teamTopics[j]].ttl < now) {
delete topicsList[keys[i]][teamTopics[j]]
}
Expand Down

0 comments on commit 2dc53b4

Please sign in to comment.