tangled
alpha
login
or
join now
skywatch.blue
/
skywatch-automod
7
fork
atom
A tool for parsing traffic on the jetstream and applying a moderation workstream based on regexp based rules
7
fork
atom
overview
issues
pulls
pipelines
Minor fixes
D. Scarnecchia
8 months ago
ccbec41a
160fd560
-10
2 changed files
expand all
collapse all
unified
split
src
checkPosts.ts
checkProfiles.ts
-2
src/checkPosts.ts
reviewed
···
54
54
if (checkPost?.language || checkPost?.language !== undefined) {
55
55
if (!checkPost?.language.includes(lang)) {
56
56
return;
57
57
-
} else {
58
58
-
logger.info(`[CHECKPOSTS]: ${checkPost!.label} supported for ${lang}`);
59
57
}
60
58
}
61
59
-8
src/checkProfiles.ts
reviewed
···
30
30
if (checkProfiles?.language || checkProfiles?.language !== undefined) {
31
31
if (!checkProfiles?.language.includes(lang)) {
32
32
return;
33
33
-
} else {
34
34
-
logger.info(
35
35
-
`[CHECKDESCRIPTION]: ${checkProfiles!.label} supported for ${lang}`,
36
36
-
);
37
33
}
38
34
}
39
35
···
115
111
if (checkProfiles?.language || checkProfiles?.language !== undefined) {
116
112
if (!checkProfiles?.language.includes(lang)) {
117
113
return;
118
118
-
} else {
119
119
-
logger.info(
120
120
-
`[CHECKDESCRIPTION]: ${checkProfiles!.label} supported for ${lang}`,
121
121
-
);
122
114
}
123
115
}
124
116