We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4daece9 commit c61dc7fCopy full SHA for c61dc7f
src/StreamObjects/HitboxObject.php
@@ -89,10 +89,13 @@ public function smallPreview() {
89
* @return string
90
*/
91
public function status() {
92
- $status = $this->stream['media_status'];
93
- $status = htmlspecialchars($status);
94
- $status = html_entity_decode($status, ENT_QUOTES);
95
- $status = preg_replace("/\r|\n/", "", $status);
+ $status = preg_replace("/\r|\n/", "",
+ html_entity_decode(
+ htmlspecialchars(
+ $this->stream['media_status']
96
+ ), ENT_QUOTES
97
+ )
98
+ );
99
return $status;
100
}
101
0 commit comments