0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-26 13:09:16 +02:00

Bugfix when content isn't a string.

This commit is contained in:
Kegan Dougal 2014-09-16 16:31:16 +01:00
parent 95e171e19a
commit d6c0cff3bd

View file

@ -51,7 +51,7 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) {
// bit strange to put the impl in this service though, but I can't think of a better
// file to put it in.
$rootScope.containsBingWord = function(content) {
if (!content) {
if (!content || $.type(content) != "string") {
return false;
}
var bingWords = matrixService.config().bingWords;