Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
also hide private tasks
fix indentation

Signed-off-by: Fabian Dellwing <[email protected]>
  • Loading branch information
Fabian Dellwing committed Jan 4, 2019
commit 7fd4befca02e9da029c253c784b229010ccf174f
6 changes: 3 additions & 3 deletions apps/dav/lib/CalDAV/Activity/Backend.php
Original file line number Diff line number Diff line change
Expand Up @@ -452,9 +452,9 @@ public function onTouchCalendarObject($action, array $calendarData, array $share
],
]
);
if ($event->getType() === 'calendar_event' && $classification !== 0 && $user !== $owner) {
continue;
}
if ($classification !== 0 && $user !== $owner) {
continue;
}
$this->activityManager->publish($event);
}
}
Expand Down