diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-03-23 07:38:34 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-03-23 08:14:19 +0100 |
commit | 8633f13e0af8c803cd419af2a611c41708e9c7c1 (patch) | |
tree | 41a081d0162fa7cf60a83aab18be6976f0b1d795 /apps/comments/src/services/GetComments.js | |
parent | 5adfec3dc60636fe2da5577dee5299ec0fd9195c (diff) | |
download | nextcloud-server-8633f13e0af8c803cd419af2a611c41708e9c7c1.tar.gz nextcloud-server-8633f13e0af8c803cd419af2a611c41708e9c7c1.zip |
chore(eslint): fix missing import extensions
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/comments/src/services/GetComments.js')
-rw-r--r-- | apps/comments/src/services/GetComments.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/comments/src/services/GetComments.js b/apps/comments/src/services/GetComments.js index bf3dd31b5f1..4bdab9046a2 100644 --- a/apps/comments/src/services/GetComments.js +++ b/apps/comments/src/services/GetComments.js @@ -20,10 +20,10 @@ * */ -import { parseXML, prepareFileFromProps } from 'webdav/dist/node/tools/dav' -import { processResponsePayload } from 'webdav/dist/node/response' -import { decodeHtmlEntities } from '../utils/decodeHtmlEntities' -import client from './DavClient' +import { parseXML, prepareFileFromProps } from 'webdav/dist/node/tools/dav.js' +import { processResponsePayload } from 'webdav/dist/node/response.js' +import { decodeHtmlEntities } from '../utils/decodeHtmlEntities.js' +import client from './DavClient.js' export const DEFAULT_LIMIT = 20 /** |