This would manifest itself when background loading the INBOX on login.
If the first viewable message was not in the base slice, the viewport
would not be positioned correctly when eventually viewed.
// TODO: Flag for no _fetchBuffer()?
if (this.view == r.view) {
this._updateContent(Object.isUndefined(offset) ? (r.rownum ? Number(r.rownum) - 1 : this.currentOffset()) : offset);
+ } else if (r.rownum) {
+ // We loaded in the background. If rownumber information was
+ // provided, we need to save this or else we will position the
+ // viewport incorrectly.
+ buffer.setMetaData({ offset: Number(r.rownum) - 1 }, true);
}
this.isbusy = false;