Use correct Wrapper for streaming json decoder.
This commit is contained in:
@@ -618,7 +618,9 @@ class JellyfinServer implements ServerInterface
|
||||
'pointer' => '/Items',
|
||||
],
|
||||
[
|
||||
new ErrorWrappingDecoder(new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE))
|
||||
'decoder' => new ErrorWrappingDecoder(
|
||||
new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE)
|
||||
)
|
||||
]
|
||||
);
|
||||
|
||||
@@ -894,7 +896,9 @@ class JellyfinServer implements ServerInterface
|
||||
'pointer' => '/Items',
|
||||
],
|
||||
[
|
||||
new ErrorWrappingDecoder(new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE))
|
||||
'decoder' => new ErrorWrappingDecoder(
|
||||
new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE)
|
||||
)
|
||||
]
|
||||
);
|
||||
|
||||
@@ -1004,7 +1008,9 @@ class JellyfinServer implements ServerInterface
|
||||
'pointer' => '/Items',
|
||||
],
|
||||
[
|
||||
new ErrorWrappingDecoder(new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE))
|
||||
'decoder' => new ErrorWrappingDecoder(
|
||||
new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE)
|
||||
)
|
||||
]
|
||||
);
|
||||
|
||||
|
||||
@@ -630,7 +630,9 @@ class PlexServer implements ServerInterface
|
||||
'pointer' => '/MediaContainer/Metadata',
|
||||
],
|
||||
[
|
||||
new ErrorWrappingDecoder(new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE))
|
||||
'decoder' => new ErrorWrappingDecoder(
|
||||
new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE)
|
||||
)
|
||||
]
|
||||
);
|
||||
|
||||
@@ -904,7 +906,9 @@ class PlexServer implements ServerInterface
|
||||
'pointer' => '/MediaContainer/Metadata',
|
||||
],
|
||||
[
|
||||
new ErrorWrappingDecoder(new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE))
|
||||
'decoder' => new ErrorWrappingDecoder(
|
||||
new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE)
|
||||
)
|
||||
]
|
||||
);
|
||||
|
||||
@@ -1014,7 +1018,9 @@ class PlexServer implements ServerInterface
|
||||
'pointer' => '/MediaContainer/Metadata',
|
||||
],
|
||||
[
|
||||
new ErrorWrappingDecoder(new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE))
|
||||
'decoder' => new ErrorWrappingDecoder(
|
||||
new ExtJsonDecoder(options: JSON_INVALID_UTF8_IGNORE)
|
||||
)
|
||||
]
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user