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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/store/modules/share.js')
-rw-r--r--src/js/store/modules/share.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/js/store/modules/share.js b/src/js/store/modules/share.js
index 4d9639bb..9fda41e0 100644
--- a/src/js/store/modules/share.js
+++ b/src/js/store/modules/share.js
@@ -88,7 +88,7 @@ const actions = {
})
return { token: response.data.share.token }
} catch (e) {
- console.error('Error writing personal share', { error: e.response }, { payload: payload })
+ console.error('Error writing personal share', { error: e.response }, { payload })
throw e
}
},
@@ -107,7 +107,7 @@ const actions = {
context.commit('set', { share: response.data.share })
context.dispatch('poll/get', null, { root: true })
} catch (e) {
- console.error('Error writing email address', { error: e.response }, { payload: payload })
+ console.error('Error writing email address', { error: e.response }, { payload })
throw e
}
},
@@ -125,7 +125,7 @@ const actions = {
context.dispatch('subscription/update', false, { root: true })
context.dispatch('poll/get', null, { root: true })
} catch (e) {
- console.error('Error writing email address', { error: e.response }, { payload: payload })
+ console.error('Error writing email address', { error: e.response }, { payload })
throw e
}
},
@@ -140,7 +140,7 @@ const actions = {
try {
return await axios.get(generateUrl(endPoint + '/resend'))
} catch (e) {
- console.error('Error sending invitation', { error: e.response }, { payload: payload })
+ console.error('Error sending invitation', { error: e.response }, { payload })
throw e
}
},