Small bugfixes again

This commit is contained in:
Zach Fox 2018-09-24 17:32:30 -07:00
parent a76c3f028d
commit be304ea975
2 changed files with 3 additions and 2 deletions

View file

@ -170,7 +170,7 @@ function AppUi(properties) {
var currentTimestamp = new Date().getTime();
var lastPollTimestamp = Settings.getValue(settingsKey, currentTimestamp);
if (that.notificationPollCaresAboutSince) {
url = url + "&since=" + lastPollTimestamp;
url = url + "&since=" + lastPollTimestamp/1000;
}
Settings.setValue(settingsKey, currentTimestamp);

View file

@ -18,7 +18,8 @@
var AppUi = Script.require('appUi');
function gotoOpened() {
ui.messagesWaiting(false);
shouldShowDot = false;
ui.messagesWaiting(shouldShowDot);
}
function notificationDataProcessPage(data) {