[filterBar] do not warn if the click is being simulated

This commit is contained in:
spalger 2016-03-18 14:33:24 -07:00
parent 08ff029b49
commit 0e306d4e6a

View file

@ -39,7 +39,9 @@ export default function (Notifier) {
try {
return result.createFilter();
} catch (e) {
notify.warning(e.message);
if (!simulate) {
notify.warning(e.message);
}
}
})
.filter(Boolean)