fix NPE on update search

This commit is contained in:
Zlatin Balevsky
2019-06-30 15:11:13 +01:00
parent b27665f5dd
commit 9feb2a3c8f

View File

@ -202,7 +202,7 @@ class MainFrameModel {
void onUIResultBatchEvent(UIResultBatchEvent e) {
MVCGroup resultsGroup = results.get(e.uuid)
resultsGroup?.model.handleResultBatch(e.results)
resultsGroup?.model?.handleResultBatch(e.results)
}
void onDownloadStartedEvent(DownloadStartedEvent e) {