aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2025-04-08 11:38:25 +0200
committerprovokateurin <kate@provokateurin.de>2025-04-08 11:45:36 +0200
commitfd156d3408a030c6bb98d9cdaf3790375d766eb5 (patch)
tree11b301e0850f8408109e36a9779a60a5abb0fdd0 /lib/private
parent59444784f2e7b121983ee3ed6b33428b62eb0b27 (diff)
downloadnextcloud-server-fix/richobjectstrings/validator-string-key-value-error.tar.gz
nextcloud-server-fix/richobjectstrings/validator-string-key-value-error.zip
refactor(RichObjectStrings): Only log error if key or value is not string in validatorfix/richobjectstrings/validator-string-key-value-error
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/RichObjectStrings/Validator.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/private/RichObjectStrings/Validator.php b/lib/private/RichObjectStrings/Validator.php
index adc4a8710f7..d7f824f2948 100644
--- a/lib/private/RichObjectStrings/Validator.php
+++ b/lib/private/RichObjectStrings/Validator.php
@@ -10,6 +10,8 @@ namespace OC\RichObjectStrings;
use OCP\RichObjectStrings\Definitions;
use OCP\RichObjectStrings\InvalidObjectExeption;
use OCP\RichObjectStrings\IValidator;
+use OCP\Server;
+use Psr\Log\LoggerInterface;
/**
* Class Validator
@@ -79,10 +81,10 @@ class Validator implements IValidator {
foreach ($parameter as $key => $value) {
if (!is_string($key)) {
- throw new InvalidObjectExeption('Object for placeholder ' . $placeholder . ' is invalid, key ' . $key . ' is not a string');
+ Server::get(LoggerInterface::class)->error('Object for placeholder ' . $placeholder . ' is invalid, key ' . $key . ' is not a string');
}
if (!is_string($value)) {
- throw new InvalidObjectExeption('Object for placeholder ' . $placeholder . ' is invalid, value ' . $value . ' for key ' . $key . ' is not a string');
+ Server::get(LoggerInterface::class)->error('Object for placeholder ' . $placeholder . ' is invalid, value ' . $value . ' for key ' . $key . ' is not a string');
}
}
}