Fix incorrect reference to matrixClient

This commit is contained in:
q 2022-10-17 00:31:27 -04:00
parent 97d39777f3
commit 0e30e07844

View File

@ -194,7 +194,7 @@ Searx.prototype.handleMessage = function(event, room) {
return; return;
} }
else if (resultIndex > (results.length - 1)) { else if (resultIndex > (results.length - 1)) {
this.matrixClient.sendNotice(room.roomId, "No result found for \""+toSearch+"\" at position "+resultIndex+1); matrixClient.sendNotice(room.roomId, "No result found for \""+toSearch+"\" at position "+resultIndex+1);
return; return;
} }