From 0e3bf780874657d6ea6ae07152ad65fff8eb51c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCbschle-Schneider?= Date: Mon, 24 Mar 2014 18:05:06 +0000 Subject: [PATCH] Fix bug where no (more) lines were loaded despite there being more --- js/glowingbear.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/js/glowingbear.js b/js/glowingbear.js index b39e003..58fec5d 100644 --- a/js/glowingbear.js +++ b/js/glowingbear.js @@ -455,10 +455,6 @@ function($rootScope, // the read marker position correct buffer.lastSeen -= oldLength; } - // We request more lines, but didn't get more. No more lines! - if (oldLength === buffer.lines.length) { - buffer.allLinesFetched = true; - } // We requested more lines than we got, no more lines. if (linesReceivedCount < numLines) { buffer.allLinesFetched = true;