Skip to content

Commit

Permalink
Merge branch hotfix/v8.2.2 into release/v8.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
papacarlo committed Dec 9, 2024
2 parents a7db22c + 2f58a16 commit 97229af
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions DocService/sources/DocsCoServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1579,8 +1579,6 @@ async function encryptPasswordParams(ctx, data) {
dataWithPassword = data.message;
} else if (data.type === 'auth' && data.openCmd) {
dataWithPassword = data.openCmd;
} else if (data.c === 'savefromorigin') {
dataWithPassword = data;
}
if (dataWithPassword && dataWithPassword.password) {
if (dataWithPassword.password.length > constants.PASSWORD_MAX_LENGTH) {
Expand Down
1 change: 0 additions & 1 deletion DocService/sources/canvasservice.js
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,6 @@ exports.downloadAs = function(req, res) {
yield* commandSave(ctx, cmd, outputData);
break;
case 'savefromorigin':
yield docsCoServer.encryptPasswordParams(ctx, cmd);
yield* commandSaveFromOrigin(ctx, cmd, outputData, row && row.password);
break;
case 'sendmm':
Expand Down
4 changes: 2 additions & 2 deletions schema/mysql/removetbl.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
USE onlyoffice;
-- USE onlyoffice;
--
-- Drop tables
--
DROP TABLE IF EXISTS `doc_callbacks`;
DROP TABLE IF EXISTS `doc_changes`;
DROP TABLE IF EXISTS `task_result`;
DROP TABLE IF EXISTS `task_result`;

0 comments on commit 97229af

Please sign in to comment.