Did some more troubleshooting last night, and just now.
I'm not getting signature updates from using iSub on my iphone either, so I don't think it's a problem with Madsonic per se, however I think there may be some code changes necessary in the signature.php file, as to the variables that are returned under the following section:
- Code: Select all
foreach($xml->children()->children() as $second_gen) {
$math = floor($second_gen['duration']/60);
if($second_gen['username']==$user and $second_gen['minutesAgo']<=$math) {
if($second_gen['isVideo']=='false') {
goto playing;
}
else{
goto watching;
}
}
}
Each time I "run" the script, it says that I'm not listening to anything, so I know the script itself is working, it's just that it's not "choosing" whether I am listening to something or not.
Any ideas?