Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2022-09-01 22:00:48 +0300
committerChristopher Ng <chrng8@gmail.com>2022-09-16 01:56:18 +0300
commit8a15c629e25fbad5148c64d4b1b3c9f0f8174a9f (patch)
tree14b91027159cd0cdbd9ac8b51bf4d7ee91129882 /apps/settings
parentb9cd65291a74adf18112014ccc0c6ecfaed64694 (diff)
Fix translation of user exists error server-sidefix/user-exists-l10n
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/settings')
-rw-r--r--apps/settings/src/store/users.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/settings/src/store/users.js b/apps/settings/src/store/users.js
index c220e21e49f..8c9e65af29c 100644
--- a/apps/settings/src/store/users.js
+++ b/apps/settings/src/store/users.js
@@ -30,7 +30,6 @@ import api from './api'
import axios from '@nextcloud/axios'
import { generateOcsUrl } from '@nextcloud/router'
import logger from '../logger'
-import { showError } from '@nextcloud/dialogs'
const orderGroups = function(groups, orderBy) {
/* const SORT_USERCOUNT = 1;
@@ -553,13 +552,6 @@ const actions = {
.then((response) => dispatch('addUserData', userid || response.data.ocs.data.id))
.catch((error) => { throw error })
}).catch((error) => {
- const statusCode = error?.response?.data?.ocs?.meta?.statuscode
-
- if (statusCode === 102) {
- showError(t('settings', 'User already exists.'))
- throw error
- }
-
commit('API_FAILURE', { userid, error })
throw error
})