Skip to content

Commit

Permalink
Fix missing update
Browse files Browse the repository at this point in the history
  • Loading branch information
pascal-fb-martin committed Jan 18, 2022
1 parent 11f80b5 commit 0c2dfc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function eventShow (response) {

var app = response.apps[0]; // For now handle only one app per query.

if (!eventLastId) {
if (!eventLastId[app]) {
var name = app[0].toUpperCase() + app.substring(1);
var title = response.host + ' - ' + name + ' Events';
document.getElementsByTagName ('title')[0].innerHTML = title;
Expand Down

0 comments on commit 0c2dfc6

Please sign in to comment.