Added font flag to caption
This commit is contained in:
parent
f7923c19cb
commit
e44f5ba59d
3 changed files with 11 additions and 4 deletions
|
@ -25,8 +25,9 @@ exports.clean = async (text) => {
|
|||
const { parsed } = require("dotenv").config();
|
||||
const imageServers = JSON.parse(fs.readFileSync("./servers.json", { encoding: "utf8" })).image;
|
||||
|
||||
for (const server of imageServers) {
|
||||
for (const { server, auth } of imageServers) {
|
||||
text = text.replaceAll(server, "<redacted>");
|
||||
text = text.replaceAll(auth, "<redacted>");
|
||||
}
|
||||
|
||||
for (const env of Object.keys(parsed)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue