Added font flag to caption

This commit is contained in:
Essem 2021-08-06 22:27:50 -05:00
parent f7923c19cb
commit e44f5ba59d
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
3 changed files with 11 additions and 4 deletions

View file

@ -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)) {