aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/legacy/OC_API.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/legacy/OC_API.php')
-rw-r--r--lib/private/legacy/OC_API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/OC_API.php b/lib/private/legacy/OC_API.php
index 46ee3495572..0da546f3263 100644
--- a/lib/private/legacy/OC_API.php
+++ b/lib/private/legacy/OC_API.php
@@ -101,7 +101,7 @@ class OC_API {
public static function requestedFormat(): string {
$formats = ['json', 'xml'];
- $format = (isset($_GET['format']) && in_array($_GET['format'], $formats)) ? $_GET['format'] : 'xml';
+ $format = (isset($_GET['format']) && is_string($_GET['format']) && in_array($_GET['format'], $formats)) ? $_GET['format'] : 'xml';
return $format;
}