mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 00:16:15 -04: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 = [];
|
var cleanedEntries = [];
|
||||||
for(var i=0;i<entries.length;i++)
|
for(var i=0;i<entries.length;i++)
|
||||||
{
|
{
|
||||||
if(entries[i]==null)
|
if(entries[i]!=null)
|
||||||
cleanedEntries.push(entries[i]);
|
cleanedEntries.push(entries[i]);
|
||||||
else
|
else
|
||||||
console.warn("WARNING: Found broken chat entry in pad " + _this.id);
|
console.warn("WARNING: Found broken chat entry in pad " + _this.id);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue