The latter did get recorded, so the WebIf display is wrong.Now that I've looked at it today (in GMT), the on-screen UI correctly says 23:55-00:15 but the WebIf says 22:55-23:15.
Investigating the database directly, I see nsttime is set to 1451602500 which corresponds to 22:55, but szsttime is set to "20151231235500".
I've probably done a restore schedule of one sort or another since originally setting it up, so not sure where the inconsistency has crept in.
I wonder which one will get recorded? My guess is the latter but tomorrow will tell.
Are you aware that the number on each folder tells you the number of UNWATCHED programs in the folder not the number total number of programs (unless they are all unwatched of course). Running reset new will reset them all to unwatched, which may not be what you actually require.
humax ~ # service stop lighttpd
Stopping lighttpd...
sh: you need to specify whom to kill
Done.
humax ~ # service start lighttpd
Starting lighttpd...
Done.
humax ~ # service stop lighttpd
Stopping lighttpd...
Done.
Trivial and seems to work:It would be nice to have a "restart" option on service.
--- /mod/bin/service~
+++ /mod/bin/service
@@ -62,6 +62,7 @@
case "$1" in
start) shift; control start "$@" ;;
stop) shift; control stop "$@" ;;
+ restart) shift; control stop "$@" ; control start "$@" ;;
toggle) shift; control toggle "$@" ;;
auto) shift; auto "$@" ;;
mlist)
@@ -91,6 +92,7 @@
Syntax:
service start <service>
service stop <service>
+ service restart <service>
service auto <service> (toggles autostart)
EOM
Odd, mine are still there. Is the option to display them still turned on in settings?
If you haven't already, try clearing your browser cache.
Have had this problem for quite a while. In another thread it was suggested putting:
10,40 * * * * diag resetnew >/dev/null 2>&1 in /mod/var/spool/cron/crontabs/root
(This runs resetnew at 10 and 40 minutes past the hour)
Since doing this my count has been accurate.
At the very least it is a good workaround...
Thread: http://hummy.tv/forum/threads/webif-web-interface-1-2-4.6484/page-7#post-90633