We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92f7347 commit 1fe2cdbCopy full SHA for 1fe2cdb
src/Services/FileMakerConnection.php
@@ -298,7 +298,7 @@ public function getRecords(FMBaseBuilder $query)
298
299
// handle single record requests
300
if ($query->getRecordId() !== null) {
301
- $url .= (Str::endsWith($url, '/') ? '' : '/') . $query->getRecordId();
+ $url = Str::finish($url, '/') . $query->getRecordId();
302
} else {
303
// handle pagination and sorting
304
// these parameters are not used for single record requests
0 commit comments