Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2020-06-10 16:57:16 +0300
committerJan Holesovsky <kendy@collabora.com>2020-06-10 17:00:43 +0300
commit7b8565214cd6496a61fb351183e33540506fac7e (patch)
tree57182901eaccd2ca92e1b9a4e77dd478bcc3a1bd /src
parent7669e584f70528589ec46ecd44fe33a1190f12e8 (diff)
New error state to handle - running on non-glibc based Linux.
Signed-off-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'src')
-rw-r--r--src/document.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/document.js b/src/document.js
index afcf0557..2987ef41 100644
--- a/src/document.js
+++ b/src/document.js
@@ -42,6 +42,8 @@ const checkProxyStatus = () => {
document.getElementById('proxyLoadingMessage').textContent = t('richdocuments', 'Error: Not running on x86-64 Linux, please setup a standalone server.')
} else if (val.error === 'no_fontconfig') {
document.getElementById('proxyLoadingMessage').textContent = t('richdocuments', 'Error: The fontconfig library is not installed on your server, please install it or setup a standalone server.')
+ } else if (val.error === 'no_glibc') {
+ document.getElementById('proxyLoadingMessage').textContent = t('richdocuments', 'Error: Not running on glibc-based Linux, please setup a standalone server.')
} else {
document.getElementById('proxyLoadingMessage').textContent = t('richdocuments', 'Error: Cannot start the Collabora Online Built-in server, please setup a standalone one.')
}