diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-11-16 11:48:04 +0100 |
---|---|---|
committer | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2023-12-07 15:45:27 +0100 |
commit | 95ea46c99c6618ead70cda69d2cf81ce05507aa8 (patch) | |
tree | 75ebd47c22b5011e9e4efd5f00713c5be759babb /core/js/setupchecks.js | |
parent | 7b6877b278f25f76c6e909e74ce188ba6a65e306 (diff) | |
download | nextcloud-server-95ea46c99c6618ead70cda69d2cf81ce05507aa8.tar.gz nextcloud-server-95ea46c99c6618ead70cda69d2cf81ce05507aa8.zip |
Merge SQlite warning to existing SupportedDatabase setup check
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r-- | core/js/setupchecks.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index c947f3c30e7..e7ad920760e 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -282,15 +282,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_INFO }) } - if (data.isSqliteUsed) { - messages.push({ - msg: t('core', 'SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend.') + ' ' + t('core', 'This is particularly recommended when using the desktop client for file synchronisation.') + ' ' + - t('core', 'To migrate to another database use the command line tool: "occ db:convert-type", or see the {linkstart}documentation ↗{linkend}.') - .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.databaseConversionDocumentation + '">') - .replace('{linkend}', '</a>'), - type: OC.SetupChecks.MESSAGE_TYPE_WARNING - }) - } if(data.appDirsWithDifferentOwner && data.appDirsWithDifferentOwner.length > 0) { var appDirsWithDifferentOwner = data.appDirsWithDifferentOwner.reduce( |