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
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2021-02-16 00:32:56 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2021-03-01 18:00:32 +0300
commit5cd1880daa048a685da689c7f41a2e50486494de (patch)
tree595427a61fbcd7fe50711f5f421f9af96ac2c0a3 /apps/federation
parent92d6abf216806de0d3dca5e8842ac3532c621b31 (diff)
Fix a few RedundantCast
Reported by psalm For #25641 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/federation')
-rw-r--r--apps/federation/lib/DbHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/federation/lib/DbHandler.php b/apps/federation/lib/DbHandler.php
index 5499b4547b6..ebff671c21a 100644
--- a/apps/federation/lib/DbHandler.php
+++ b/apps/federation/lib/DbHandler.php
@@ -87,7 +87,7 @@ class DbHandler {
$result = $query->execute();
if ($result) {
- return (int)$this->connection->lastInsertId('*PREFIX*'.$this->dbTable);
+ return $query->getLastInsertId();
}
$message = 'Internal failure, Could not add trusted server: ' . $url;