Merge pull request #4462 from thelounge/bookworm/certErr

clientCert: fix up error message
This commit is contained in:
Max Leiter 2022-02-04 16:56:33 -08:00 committed by GitHub
commit d0fab98c1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ function get(uuid) {
certificate: fs.readFileSync(paths.certificatePath, "utf-8"),
};
} catch (e) {
log.error("Unable to remove certificate", e);
log.error("Unable to get certificate", e);
}
return null;