mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 22:23:33 +01:00
bugfix bugfix
This commit is contained in:
parent
8101b7df92
commit
38fd56a877
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue