summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2020-08-22 01:51:40 -0100
committerMaxence Lange <maxence@artificial-owl.com>2020-08-22 01:51:40 -0100
commitdb9a804de057d0e7a8a592a7c31305c5cae1ba92 (patch)
tree457a9468c3d01cfe2302a7126384927f872d6377 /src
parentf876c25c73f59dc5c662a8919c14faf211f1f36e (diff)
fixes
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/Composer.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/Composer.vue b/src/components/Composer.vue
index d9b9cf3c..922dec84 100644
--- a/src/components/Composer.vue
+++ b/src/components/Composer.vue
@@ -805,10 +805,10 @@ export default {
}
// Abort if the post is a direct message and no valid mentions were found
- if (this.type === 'direct' && postData.to.length === 0) {
- OC.Notification.showTemporary(t('social', 'Error while trying to post your message: Could not find any valid recipients.'), { type: 'error' })
- return
- }
+ // if (this.type === 'direct' && postData.to.length === 0) {
+ // OC.Notification.showTemporary(t('social', 'Error while trying to post your message: Could not find any valid recipients.'), { type: 'error' })
+ // return
+ // }
// Post message
this.loading = true