Skip to content

Commit

Permalink
Merge pull request #1799 from nextcloud/artonge/backport/stable26/1797
Browse files Browse the repository at this point in the history
[stable26] Send CSRF token in rawStat
  • Loading branch information
artonge authored Jul 11, 2023
2 parents 883532f + 5ac07eb commit 571c11f
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 12 deletions.
Binary file modified cypress/snapshots/base/visual-regression.cy.js/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cypress/snapshots/base/visual-regression.cy.js/image2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cypress/snapshots/base/visual-regression.cy.js/non-dav.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cypress/snapshots/base/visual-regression.cy.js/video.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions js/viewer-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/viewer-main.js.map

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"@vue/tsconfig": "^0.1.3",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"cypress": "^11.2.0",
"cypress-visual-regression": "^2.1.1",
"cypress-visual-regression": "^3.0.0",
"dockerode": "^3.3.5",
"eslint-plugin-cypress": "^2.12.1",
"jest": "^29.4.3",
Expand Down
3 changes: 2 additions & 1 deletion src/services/FileInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import client from './DavClient.js'
import { genFileInfo } from '../utils/fileUtils.js'
import { createClient } from 'webdav'
import { getRequestToken } from '@nextcloud/auth'

const statData = `<?xml version="1.0"?>
<d:propfind xmlns:d="DAV:"
Expand Down Expand Up @@ -75,7 +76,7 @@ export default async function(path, options) {
* @return {Promise<object>} the file list
*/
export async function rawStat(origin, path, options) {
const response = await createClient(origin).stat(path, {
const response = await createClient(origin, { headers: { requesttoken: getRequestToken() || '' } }).stat(path, {
...options,
data: statData,
details: true,
Expand Down

0 comments on commit 571c11f

Please sign in to comment.