bugfix bugfix

This commit is contained in:
Peter 'Pita' Martischka 2011-07-31 20:32:46 +01:00
parent 8101b7df92
commit 38fd56a877
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ Class('Pad', {
var cleanedEntries = [];
for(var i=0;i<entries.length;i++)
{
if(entries[i]==null)
if(entries[i]!=null)
cleanedEntries.push(entries[i]);
else
console.warn("WARNING: Found broken chat entry in pad " + _this.id);