Fixed a client side range check for timelapse fps

This commit is contained in:
Gina Häußge 2015-02-24 19:24:32 +01:00
parent b273e06e88
commit ebbcd28536

View file

@ -108,7 +108,7 @@ $(function() {
self.timelapsePostRoll(undefined);
}
if (config.fps != undefined && config.fps >= 0) {
if (config.fps != undefined && config.fps > 0) {
self.timelapseFps(config.fps);
} else {
self.timelapseFps(undefined);