diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-03-31 14:56:11 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-04-06 14:49:32 +0200 |
commit | a66cae02efcc27d962d867ba9a9e5da0441333e5 (patch) | |
tree | 1961e4bef2fe10626088bff18fe8460d146d18df /core/src | |
parent | c7c9ee1ebdd07fdd5cf295835d5cf5e061fc40af (diff) | |
download | nextcloud-server-a66cae02efcc27d962d867ba9a9e5da0441333e5.tar.gz nextcloud-server-a66cae02efcc27d962d867ba9a9e5da0441333e5.zip |
fix(deps): update webdav 5 usage
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/OC/index.js | 28 | ||||
-rw-r--r-- | core/src/OC/util-history.js | 2 |
2 files changed, 14 insertions, 16 deletions
diff --git a/core/src/OC/index.js b/core/src/OC/index.js index e8f4b199103..32c31c2c3a3 100644 --- a/core/src/OC/index.js +++ b/core/src/OC/index.js @@ -44,8 +44,8 @@ import { import { build as buildQueryString, parse as parseQueryString, -} from './query-string' -import Config from './config' +} from './query-string.js' +import Config from './config.js' import { coreApps, menuSpeed, @@ -57,30 +57,30 @@ import { PERMISSION_SHARE, PERMISSION_UPDATE, TAG_FAVORITE, -} from './constants' -import ContactsMenu from './contactsmenu' -import { currentUser, getCurrentUser } from './currentuser' -import Dialogs from './dialogs' -import EventSource from './eventsource' -import { get, set } from './get_set' -import { getCapabilities } from './capabilities' +} from './constants.js' +import ContactsMenu from './contactsmenu.js' +import { currentUser, getCurrentUser } from './currentuser.js' +import Dialogs from './dialogs.js' +import EventSource from './eventsource.js' +import { get, set } from './get_set.js' +import { getCapabilities } from './capabilities.js' import { getHost, getHostName, getPort, getProtocol, -} from './host' +} from './host.js' import { getToken as getRequestToken, -} from './requesttoken' +} from './requesttoken.js' import { hideMenus, registerMenu, showMenu, unregisterMenu, -} from './menu' -import { isUserAdmin } from './admin' -import L10N from './l10n' +} from './menu.js' +import { isUserAdmin } from './admin.js' +import L10N from './l10n.js' import { getCanonicalLocale, getLanguage, diff --git a/core/src/OC/util-history.js b/core/src/OC/util-history.js index e5f9ff9447b..d18b8743936 100644 --- a/core/src/OC/util-history.js +++ b/core/src/OC/util-history.js @@ -165,8 +165,6 @@ export default { }, _onPopState(e) { - debugger - if (this._cancelPop) { this._cancelPop = false return |