Skip to content
Snippets Groups Projects
Unverified Commit 5b60508a authored by Julius Härtl's avatar Julius Härtl Committed by GitHub
Browse files

Merge pull request #9893 from kevgathuku/update-unshare-message

Update message shown when unsharing a file
parents 6b6c43bf 5d9c1d3f
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ class Users extends Base { ...@@ -92,7 +92,7 @@ class Users extends Base {
} else if ($event->getSubject() === self::SUBJECT_SHARED_WITH_BY) { } else if ($event->getSubject() === self::SUBJECT_SHARED_WITH_BY) {
$subject = $this->l->t('{actor} shared {file} with you'); $subject = $this->l->t('{actor} shared {file} with you');
} else if ($event->getSubject() === self::SUBJECT_UNSHARED_BY) { } else if ($event->getSubject() === self::SUBJECT_UNSHARED_BY) {
$subject = $this->l->t('{actor} removed you from {file}'); $subject = $this->l->t('{actor} removed you from the share named {file}');
} else { } else {
throw new \InvalidArgumentException(); throw new \InvalidArgumentException();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment