Fix title handling

This commit is contained in:
Joseph Schorr 2015-03-06 14:23:33 -05:00
parent 6a625ba9e6
commit d963bf7159

View file

@ -13,7 +13,7 @@ angular.module('quay').factory('MetaService', ['$interpolate', 'Config', '$rootS
var inter = $interpolate(expr, true, null, true);
var result = inter(page.scope)
if (result != previous) {
if (previous && result != previous) {
$interval.cancel(currentInterval);
}