Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2021-06-22 14:54:03 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-06-22 16:51:16 +0300
commit9f63ce182f2a0c5335ba61d27d8d52c6a29358d4 (patch)
tree9d455161a684752398d4136877255ace15ef4e7d /lib
parentdba013f428098a29cda58c47f7b11236f81518cc (diff)
Use execute instead of executeStatement
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php b/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php
index 7ff60b08a24..b2dd4e310d1 100644
--- a/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php
+++ b/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php
@@ -92,6 +92,6 @@ class PublicKeyCredentialMapper extends QBMapper {
->where(
$qb->expr()->eq('uid', $qb->createNamedParameter($uid))
);
- $qb->executeStatement();
+ $qb->execute();
}
}