diff --git a/infoscreen/static/infoscreen/js/infoscreen_controllers.js b/infoscreen/static/infoscreen/js/infoscreen_controllers.js
index 543ed65..739fcfd 100644
--- a/infoscreen/static/infoscreen/js/infoscreen_controllers.js
+++ b/infoscreen/static/infoscreen/js/infoscreen_controllers.js
@@ -46,6 +46,13 @@ app.filter('trusted_url', ['$sce', function ($sce) {
};
}]);
+//Used for special characters in Sosso. This may open up XSS, so we need to trust that sosso.fi doesn't get compromised...
+app.filter('unsafe', function($sce) {
+ return function(val) {
+ return $sce.trustAsHtml(val);
+ };
+});
+
app.controller('ABBController', function($scope, $http){
$scope.jobs = [];
var min_date = moment().subtract(30,'days').format("YYYY-MM-DD%20HH:mm:ss");