update/fix remote

This commit is contained in:
brindosch
2017-03-02 11:52:27 +01:00
parent 976dd7873f
commit 19f8928869
6 changed files with 35 additions and 36 deletions

View File

@@ -48,6 +48,14 @@ function debugMessage(msg)
}
}
function validateDuration(d)
{
if(typeof d === "undefined" || d < 0)
return d = 0;
else
return d *= 1000;
}
function getHashtag()
{
if(getStorage('lasthashtag', true) != null)