summaryrefslogtreecommitdiffstats
path: root/src/store
diff options
context:
space:
mode:
authorCyrille Bollu <cyrpub@bollu.be>2019-07-10 17:17:47 +0200
committerCyrille Bollu <cyrpub@bollu.be>2019-07-10 17:40:21 +0200
commite4515688de40256b046aba2e84e9eba957d571b5 (patch)
treea37c10f63c003093ea0f27c67689d8190ac01c40 /src/store
parent1481a51e16ce94830691291d45f41db14334a57a (diff)
Corrected typo in a debug message
Signed-off-by: Cyrille Bollu <cyrpub@bollu.be>
Diffstat (limited to 'src/store')
-rw-r--r--src/store/timeline.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/timeline.js b/src/store/timeline.js
index 50dac734..3146a194 100644
--- a/src/store/timeline.js
+++ b/src/store/timeline.js
@@ -147,7 +147,7 @@ const actions = {
return axios.delete(OC.generateUrl(`apps/social/api/v1/post/like?postId=${post.id}`)).then((response) => {
context.commit('unlikePost', { post, parentAnnounce })
// eslint-disable-next-line no-console
- console.log('Boost unliked with token ' + response.data.result.token)
+ console.log('Post unliked with token ' + response.data.result.token)
}).catch((error) => {
OC.Notification.showTemporary('Failed to unlike post')
console.error('Failed to unlike post', error)