Nextcloud failed to complete 12.0.3 update Error:" Checking for update of app "activity" in appstore

Hi, i solved the problem via this thread.
The fix is written for 12.0.1 but it worked also in this case.
Good luck!

Die Lösung steht hier: Nextcloud 12.0.1 stable Error: Cannot access private property - #7 by nickvergessen
Ich habe via Web-FTP in der Datei /nextcloud/apps/files_accesscontrol/lib/Operation.php die Zeilen 84 und 85 gelöscht und mit dem empfohlenen Fix überschrieben:

        $hasMountPoint = $storage instanceof StorageWrapper;
  	if (!$hasMountPoint) {
  		$ref = new \ReflectionClass($storage);
  		$prop = $ref->getProperty('mountPoint');
  		$hasMountPoint = $prop->isPublic();
  	}
  	if ($hasMountPoint) {
  		/** @var StorageWrapper $storage */
  		$fullPath = $storage->mountPoint . $path;
  	} else {
  		$fullPath = $path;
  	}

Nun noch vor dem Neuladen der Nextcloud-Webseite in der Datei /nextcloud/config/config.php den Parameter ‘maintenance’ auf ‘false’ zu setzen.
Danach lief es bei mir.

Wenn es euch geholfen hat, dann bitte diesen Beitrag als Lösung markieren, Danke!