Variable fix, and compare fix

l-merge-prefix
Tor Hveem 12 years ago committed by David Cormier
parent c80e3ce005
commit 892dac5fbc
  1. 6
      js/glowingbear.js

@ -433,7 +433,7 @@ function($rootScope,
buffer.lines.length = 0; buffer.lines.length = 0;
buffer.requestedLines = 0; buffer.requestedLines = 0;
// Count number of lines recieved // Count number of lines recieved
var newLength = lineinfo.objects[0].content.length; var linesReceivedCount = lineinfo.objects[0].content.length;
// Parse the lines // Parse the lines
handlers.handleLineInfo(lineinfo, true); handlers.handleLineInfo(lineinfo, true);
@ -449,11 +449,11 @@ function($rootScope,
buffer.lastSeen -= oldLength; buffer.lastSeen -= oldLength;
} }
// We request more lines, but didn't get more. No more lines! // We request more lines, but didn't get more. No more lines!
if (oldLength === newLength) { if (oldLength === buffer.lines.length) {
$rootScope.noMoreLines = true; $rootScope.noMoreLines = true;
} }
// We requested more lines than we got, no more lines. // We requested more lines than we got, no more lines.
if (newLength < numLines) { if (linesReceivedCount < numLines) {
$rootScope.noMoreLines = true; $rootScope.noMoreLines = true;
} }
$rootScope.loadingLines = false; $rootScope.loadingLines = false;

Loading…
Cancel
Save