mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
fix checkDatabaseVersion message typo
This commit is contained in:
parent
7c0db0633f
commit
5bd8608918
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ async function checkDatabaseVersion(databaseType) {
|
||||||
|
|
||||||
if (semver.lt(version, minVersion)) {
|
if (semver.lt(version, minVersion)) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Database version is not compatible. Please upgrade to ${databaseType} version to ${minVersion} or greater`,
|
`Database version is not compatible. Please upgrade ${databaseType} version to ${minVersion} or greater`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue