7 lines
198 B
PHP
7 lines
198 B
PHP
|
<?php
|
||
|
$np = json_decode(file_get_contents('np.json'));
|
||
|
|
||
|
if(!empty($np[0]->nowplaying) && !empty($np[0]->url)) {
|
||
|
header('Location: ' . $np[0]->url);
|
||
|
} else header('Location: https://flash.moe');
|