diff options
Diffstat (limited to 'apps/files_trashbin/src')
-rw-r--r-- | apps/files_trashbin/src/actions/restoreAction.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/src/actions/restoreAction.ts b/apps/files_trashbin/src/actions/restoreAction.ts index cda82fda466..31160183d83 100644 --- a/apps/files_trashbin/src/actions/restoreAction.ts +++ b/apps/files_trashbin/src/actions/restoreAction.ts @@ -3,6 +3,7 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ import { emit } from '@nextcloud/event-bus' +import { encodePath } from '@nextcloud/paths' import { generateRemoteUrl } from '@nextcloud/router' import { getCurrentUser } from '@nextcloud/auth' import { Permission, Node, View, registerFileAction, FileAction } from '@nextcloud/files' @@ -10,8 +11,7 @@ import { translate as t } from '@nextcloud/l10n' import axios from '@nextcloud/axios' import History from '@mdi/svg/svg/history.svg?raw' -import logger from '../../../files/src/logger.js' -import { encodePath } from '@nextcloud/paths' +import logger from '../../../files/src/logger.ts' registerFileAction(new FileAction({ id: 'restore', |