mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-04-06 12:53:59 -04:00
Add missing null check preventing setup of the database
This commit is contained in:
parent
6cc26907d3
commit
5d2d261278
@ -202,7 +202,7 @@ class Database {
|
||||
}
|
||||
dbConfig.caFilePath = dataCaFilePath;
|
||||
}
|
||||
if (dbConfig.caFilePath.startsWith(temporaryDirectoryPath)) {
|
||||
if (dbConfig.caFilePath && dbConfig.caFilePath.startsWith(temporaryDirectoryPath)) {
|
||||
dbConfig.caFilePath = undefined;
|
||||
}
|
||||
dbConfig.ssl = undefined;
|
||||
|
Loading…
x
Reference in New Issue
Block a user