More null type check improvements

This commit is contained in:
Essem 2022-01-16 14:27:59 -06:00
parent 2db49e65e0
commit dd5df2402c
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@ class ImageConnection {
async getOutput(jobid) {
const req = await fetch(`${this.httpurl}?id=${jobid}`, {
headers: {
"Authentication": this.auth ? this.auth : undefined
"Authentication": this.auth || undefined
}
});
const contentType = req.headers.get("Content-Type");