mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 07:08:34 -04:00
fix(files): correctly import WebDAV client in files store
The files store was importing the client, but this is only on current master on stableX we still need to import the getter function. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
a371262bba
commit
057d81c8d7
1 changed files with 2 additions and 1 deletions
|
|
@ -30,7 +30,8 @@ import { subscribe } from '@nextcloud/event-bus'
|
|||
import logger from '../logger'
|
||||
import Vue from 'vue'
|
||||
|
||||
import { client } from '../services/WebdavClient.ts'
|
||||
import { getClient } from '../services/WebdavClient.ts'
|
||||
const client = getClient()
|
||||
|
||||
const fetchNode = async (node: Node): Promise<Node> => {
|
||||
const propfindPayload = davGetDefaultPropfind()
|
||||
|
|
|
|||
Loading…
Reference in a new issue