vlandru
vlandru

Reputation: 21

Synchronisation of Owncloud 8.1 with Lightning

Since the migration to Owncloud 8.1 I'm not able to access shared calendar in Lightning.

Real calendar is available, but "shared with me calendar" not !

Here is a quick and dirty hack to solve this. Just modify :

3rdparty/sabre/dav/lib/DAVACL/Plugin.php

Search for the checkPrivileges function, and replace the if in the foreach by this one :

    foreach($privileges as $priv) {

        if (!in_array($priv, $acl) and $priv != '{DAV:}read') {
            $failed[] = $priv;
        }

    }

And it's working again !

Upvotes: 1

Views: 209

Answers (0)

Related Questions