summaryrefslogtreecommitdiff
path: root/www/onlyoffice-documentserver/files/patch-increase_max_connections
blob: 15499bc9f923e6f8832281c85c0b6dcf67d69825 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
--- server/Common/sources/constants.js.orig	2025-10-12 16:21:06 UTC
+++ server/Common/sources/constants.js
@@ -88,7 +88,7 @@ exports.LICENSE_RESULT = {
   NotBefore: 16
 };
 
-exports.LICENSE_CONNECTIONS = 20;
+exports.LICENSE_CONNECTIONS = 2000;
 exports.LICENSE_USERS = 3;
 exports.LICENSE_EXPIRE_USERS_ONE_DAY = 24 * 60 * 60; // day in seconds
 
--- web-apps/apps/documenteditor/mobile/src/lib/patch.jsx.orig	2025-10-12 20:28:53 UTC
+++ web-apps/apps/documenteditor/mobile/src/lib/patch.jsx
@@ -4,7 +4,7 @@ EditorUIController.isSupportEditFeature = () => {
 };
 
 EditorUIController.isSupportEditFeature = () => {
-    return false
+    return true
 };
 
 EditorUIController.getToolbarOptions = () => {
--- web-apps/apps/presentationeditor/mobile/src/lib/patch.jsx.orig	2025-10-12 20:28:53 UTC
+++ web-apps/apps/presentationeditor/mobile/src/lib/patch.jsx
@@ -1,6 +1,6 @@ const EditorUIController = () => null;
 
 const EditorUIController = () => null;
 
-EditorUIController.isSupportEditFeature = () => false;
+EditorUIController.isSupportEditFeature = () => true;
 
 export default EditorUIController;
--- web-apps/apps/spreadsheeteditor/mobile/src/lib/patch.jsx.orig	2025-10-12 20:28:53 UTC
+++ web-apps/apps/spreadsheeteditor/mobile/src/lib/patch.jsx
@@ -1,6 +1,6 @@ const EditorUIController = () => null;
 
 const EditorUIController = () => null;
 
-EditorUIController.isSupportEditFeature = () => false;
+EditorUIController.isSupportEditFeature = () => true;
 
 export default EditorUIController;