Commit fdf1a977 authored by JC Brand's avatar JC Brand

Bugfix. Fall back to normal query when no messages

parent 76170427
...@@ -78,6 +78,9 @@ ...@@ -78,6 +78,9 @@
(result) => { // Success (result) => { // Success
if (result.supported) { if (result.supported) {
const most_recent_msg = utils.getMostRecentMessage(this.model); const most_recent_msg = utils.getMostRecentMessage(this.model);
if (_.isNil(most_recent_msg)) {
this.fetchArchivedMessages();
} else {
const archive_id = most_recent_msg.get('archive_id'); const archive_id = most_recent_msg.get('archive_id');
if (archive_id) { if (archive_id) {
this.fetchArchivedMessages({ this.fetchArchivedMessages({
...@@ -88,6 +91,7 @@ ...@@ -88,6 +91,7 @@
'start': most_recent_msg.get('time') 'start': most_recent_msg.get('time')
}); });
} }
}
} else { } else {
this.clearSpinner(); this.clearSpinner();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment