Skip to content

Commit

Permalink
Merge pull request #1026 from nextcloud/kendy/nonglibc
Browse files Browse the repository at this point in the history
New error state to handle - running on non-glibc based Linux.
  • Loading branch information
juliushaertl committed Jun 10, 2020
2 parents 7669e58 + 7b85652 commit 0d53281
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/document.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.')
}
Expand Down

0 comments on commit 0d53281

Please sign in to comment.