More null type check improvements
This commit is contained in:
parent
2db49e65e0
commit
dd5df2402c
2 changed files with 2 additions and 2 deletions
|
@ -128,7 +128,7 @@ export default async (client, cluster, worker, ipc, message) => {
|
||||||
if (process.env.TEMPDIR !== "") {
|
if (process.env.TEMPDIR !== "") {
|
||||||
const filename = `${Math.random().toString(36).substring(2, 15)}.${result.name.split(".")[1]}`;
|
const filename = `${Math.random().toString(36).substring(2, 15)}.${result.name.split(".")[1]}`;
|
||||||
await promises.writeFile(`${process.env.TEMPDIR}/${filename}`, result.file);
|
await promises.writeFile(`${process.env.TEMPDIR}/${filename}`, result.file);
|
||||||
const imageURL = `${process.env.TMP_DOMAIN !== "" ? process.env.TMP_DOMAIN : "https://tmp.projectlounge.pw"}/${filename}`;
|
const imageURL = `${process.env.TMP_DOMAIN || "https://tmp.projectlounge.pw"}/${filename}`;
|
||||||
await client.createMessage(message.channel.id, Object.assign({
|
await client.createMessage(message.channel.id, Object.assign({
|
||||||
embeds: [{
|
embeds: [{
|
||||||
color: 16711680,
|
color: 16711680,
|
||||||
|
|
|
@ -135,7 +135,7 @@ class ImageConnection {
|
||||||
async getOutput(jobid) {
|
async getOutput(jobid) {
|
||||||
const req = await fetch(`${this.httpurl}?id=${jobid}`, {
|
const req = await fetch(`${this.httpurl}?id=${jobid}`, {
|
||||||
headers: {
|
headers: {
|
||||||
"Authentication": this.auth ? this.auth : undefined
|
"Authentication": this.auth || undefined
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const contentType = req.headers.get("Content-Type");
|
const contentType = req.headers.get("Content-Type");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue