1
0

Update address to playlist.json

This commit is contained in:
Christer Warén 2025-05-24 11:08:52 +03:00
parent acd010e923
commit 03082153e1

View File

@ -10,13 +10,13 @@ header('Content-Type: application/json');
class Generator {
public function json (){
$json = file_get_contents("https://git.cwinfo.net/cwchristerw/radio/raw/branch/master/playlist.json");
$json = file_get_contents("https://git.waren.io/cwchristerw/radio/raw/branch/master/playlist.json");
$json = str_replace("aw_0_1st.skey=1701171117", "aw_0_1st.skey=".time(),$json);
echo $json;
}
}
$generator = new Generator;