Fixed UTF encoding issues
This commit is contained in:
@@ -71,8 +71,10 @@
|
||||
<script>
|
||||
function fetchNowPlaying() {
|
||||
fetch('now_playing.php')
|
||||
.then(response => response.text())
|
||||
.then(data => {
|
||||
.then(response => response.arrayBuffer())
|
||||
.then(buffer => {
|
||||
const decoder = new TextDecoder('utf-8');
|
||||
const data = decoder.decode(buffer);
|
||||
document.getElementById('now-playing').innerHTML = data;
|
||||
})
|
||||
.catch(error => {
|
||||
|
||||
+9
-6
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
// Icecast server status URL
|
||||
header('Content-Type: text/html; charset=utf-8');
|
||||
|
||||
$icecastStatusURL = "https://radio.cyberpunklibrarian.nohost.me/status-json.xsl";
|
||||
|
||||
// Fetch the status JSON
|
||||
$response = @file_get_contents($icecastStatusURL);
|
||||
|
||||
if ($response === FALSE) {
|
||||
@@ -13,17 +13,20 @@ if ($response === FALSE) {
|
||||
if (isset($data['icestats']['source'])) {
|
||||
$source = $data['icestats']['source'];
|
||||
|
||||
// Ensure $source is treated as an array
|
||||
if (!is_array($source) || isset($source['title'])) {
|
||||
$currentStream = $source;
|
||||
} else {
|
||||
$currentStream = $source[0]; // If multiple sources exist, take the first
|
||||
$currentStream = $source[0];
|
||||
}
|
||||
|
||||
// Extract song metadata
|
||||
$currentSong = isset($currentStream['title']) ? $currentStream['title'] : 'No song metadata available';
|
||||
|
||||
echo htmlspecialchars($currentSong);
|
||||
// Undo the double-encoding: strip the outer UTF-8 layer to recover
|
||||
// the original correct UTF-8 byte sequence
|
||||
$currentSong = mb_convert_encoding($currentSong, 'ISO-8859-1', 'UTF-8');
|
||||
|
||||
echo htmlspecialchars($currentSong, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8');
|
||||
|
||||
} else {
|
||||
echo "RFE is currently offline! Please check back later!";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user