Skip to content

Commit

Permalink
flip sign the other way derp
Browse files Browse the repository at this point in the history
  • Loading branch information
reivilibre committed Feb 3, 2024
1 parent 563c385 commit 1a11dbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backends/penta/PentabarfParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ export class PentabarfParser {
const parsedStartTime = simpleTimeParse(pEvent.start);
const parsedDuration = simpleTimeParse(pEvent.duration);
// HACK FOSDEM2024 +01 TIMEZONE
const startTime = moment(dateTs).add(parsedStartTime.hours + 1, 'hours').add(parsedStartTime.minutes, 'minutes');
const endTime = moment(startTime).add(parsedDuration.hours + 1, 'hours').add(parsedDuration.minutes, 'minutes');
const startTime = moment(dateTs).add(parsedStartTime.hours - 1, 'hours').add(parsedStartTime.minutes, 'minutes');
const endTime = moment(startTime).add(parsedDuration.hours - 1, 'hours').add(parsedDuration.minutes, 'minutes');
let talk: IPentabarfTalk = {
pretalxCode: pEvent.attr?.["@_code"],
id: talkId,
Expand Down

0 comments on commit 1a11dbf

Please sign in to comment.