Merge pull request #2722 from nextcloud/failed-to-create-share-fix

[downstream] commit transaction after select query
This commit is contained in:
Roeland Jago Douma 2016-12-17 19:28:54 +01:00 committed by GitHub
commit abf302bef8

View file

@ -162,7 +162,6 @@ class DefaultShareProvider implements IShareProvider {
$this->dbConn->beginTransaction();
$qb->execute();
$id = $this->dbConn->lastInsertId('*PREFIX*share');
$this->dbConn->commit();
// Now fetch the inserted share and create a complete share object
$qb = $this->dbConn->getQueryBuilder();
@ -172,6 +171,7 @@ class DefaultShareProvider implements IShareProvider {
$cursor = $qb->execute();
$data = $cursor->fetch();
$this->dbConn->commit();
$cursor->closeCursor();
if ($data === false) {