Content Navigation

The webclient does not show any media after October 1st, 2010. What is Wrong?

On October 1st, 2010 we discovered a minor bug in our LogDepot Webclient. The Webclient does not show any media after October 1st, 2010 (directly after midnight). We truly apologize for the inconvenience this causes.
 
A solution is available and we can assist you in upgrading the software. Therefore please contact our support department under telephone number +31 314 399 055.
 
Fixing this problem yourself, however, is quite easy:
 
1.       Go to the LogDepot Webclient folder on the Fetcher: C:\Program files\arbor\logdepot\client
2.       Find the LogDepot.js file in this folder
3.       Copy this file in the same folder and rename it to LogDepot_backup.js
4.       Edit the original file (LogDepot.js) with Notepad and find the next function:

function dd(i)
    {
       return i < 10 ? "0"+i : i;
    }

5.       Replace this function (completely!) with the following:
 
function dd(i)
    {
     return i < 10 ? "0"+i : String(i);
    }

Some customers use multiple fetchers and/or multiple Webclients on one fetcher. Please notice that fixing the problem needs to be done on every Webclient for each fetcher using the same procedure.
Changing the function will fix the problem.
 
Again, we are very sorry for the inconvenience.

Back to FAQ overview