Improve error message when null pointer found in journal file

This commit is contained in:
Guy Scharf 2020-11-04 10:23:14 -07:00
parent 1af5d3ec40
commit fac7803880

View File

@ -1197,7 +1197,9 @@ void MainWindow::updateFavourites()
if (journal) {
if (journal->size() > 0) {
Session *sess = journal->firstSession(MT_JOURNAL);
if (sess) {
if (!sess) {
qWarning() << "null session for MT_JOURNAL first session";
} else {
QString tmp;
bool filtered = !bookmarkFilter.isEmpty();
bool found = !filtered;