diff --git a/ts/Event.ts b/ts/Event.ts index a59cf20..7a1a211 100644 --- a/ts/Event.ts +++ b/ts/Event.ts @@ -24,6 +24,12 @@ export default class Event implements UiComponent { } else { new FutureEvent(this._event).appendTo(entry); } + + const hashId = "#_" + this._event.datetime.utc().unix(); + if (window.location.hash == hashId) { + window.location.hash = ""; + setTimeout(() => { window.location.hash = hashId; }, 0); + } } isCancelled(): boolean {